• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

Recent content by luzifix

  1. L

    SHInject :: Memory Editing Library for World of Warcraft 3.3.5a

    Hello, i create a small Memory Editing Library to make Memory Editing in World of Warcraft simpler. The lib is in a alpha phase and i need your feedback if you use the lib :) Github Link: https://github.com/Luzifix/SHInject
  2. L

    Lua log file

    Hello, have eluna a function to create a lua error log file ?
  3. L

    [SOLVED] Trinity gobject turn & move

    Hello, can anyone make a fix for the Trinity gameobject command ".gobject turn" & ".gobject move" make ?
  4. L

    Reload Timer Bug

    Hey, if i reload the eluna engine with .reload eluna all Timer events stop :(
  5. L

    [SOLVED] Custom Vehicel

    How to create custom Vehicel like a Horse or other mounts ?
  6. L

    Movement Hooks

    Hey, can you patch movement hooks like PlayerHookMovement(event, plr, type); -- type 1 -> Run, 2 -> Walk, 3 Seat, 4 Lay, 5 Stand and getter like player:GetMovementType(); -- retruns type 1 -> Run, 2 -> Walk, 3 Seat, 4, 5 Stand Lay or Nil
  7. L

    Vehicle hooks

    Hey, I wanted to ask if there is a possibility, Vehicle hooks to use in Lua
  8. L

    Weather Change

    Hello, how i can change the weather in a zone with a lua command ?
  9. L

    GetExplTargetDest in Lua

    Hello is there a way to get in lua the selected position of a spell? SpellID: http://www.wowhead.com/spell=27651
  10. L

    [SOLVED] GOMove 2

    Hey ho, i use a very nice script from Rochet2 ( http://www.trinitycore.org/f/topic/7038-patch-gomove-trinitycore-with-ui-addon/ ) and have now a problem with the script. The script dont more Work. I Update the core and fix the RBAC Permession but the script dont will work, i can spawn object...
  11. L

    [SOLVED] GameObject mod Name

    Is it possible to modify an object name with a command like this gameobject modify for scale ? http://www.trinitycore.org/f/topic/7206-patch-scale-objects-and-creatures/
  12. L

    reload eluna

    Hey, the .reload elun dont more work :(
  13. L

    LuaSpell 0.0.1a

    Hey, i recoded the TrinityCore Spell Script Hook in lua and make a small Beta from the Script. Main.lua: --Config START local debugmode = false; --Config END -- Load SQL data in Array local spell_script_lua = {}; local function load_scripts() spell_script_lua = {}; local i = 0...
  14. L

    Lua loadstring

    Hey, i try to load a string with a function call but the lua function loadstring dont work, you remove or rename the function ? LuaDoc for loadstring & loadfile: http://www.lua.org/pil/8.html --Doc: func_start(plr, 2525, "test_func_01") local function func_start(plr, spell, func)...
  15. L

    Spell:GetId dont Work

    Hey, i use the hook with -- Capture Spell Cast Event local function event_spellcast(event, plr, spell, skipCheck) local spellId = spell:GetId() print("Spell Id:", spellId); print("Skip: ", skipCheck); end RegisterServerHook(5, event_spellcast) Error:
Top