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

Search results

  1. Rochet2

    Written Tutorial for debugging, crashlogs, edit and continue

    A lot of people have asked how to debug so I made this short guide on how to set up debugging. This will not explain the basics of debugging. You can google those or play around with the debugger to learn. This guide probably works on trinitycore, mangos, cmangos, arcemu, ascemu. It was only...
  2. Rochet2

    AIO - server-client communication system

    AIO is a pure lua server-client communication system for Eluna and WoW. AIO is designed for sending lua addons and data to player from server and data from player to server. With AIO you can deal out addons and make changes to them without dealing out patches or new addon files to users...
  3. Rochet2

    Phased duel (pets work)

    I got a request a week ago to look into the pet phasing on the phased duel script from a while ago and now I checked it and it was pretty simple. Decided to release the script as I cant see one released and even if there is one, it doesnt have the proper solution for the pet phasing. This script...
  4. Rochet2

    Eluna multithreading support

    NOTE! This is work in progress, not finished nor is it on the master branch. See progress here https://github.com/ElunaLuaEngine/Eluna/commits/mthread Intro: Due to lua being designed for single thread, which forces us to use locks (slow everything else) and no good available systems for...
  5. Rochet2

    Eluna using submodule

    We are now changing eluna to use one repository for the engine and the core changes are in separate core repositories. This means that the LuaEngine folder will not be on the core repository. New installation instructions can be found here...
  6. Rochet2

    Lua tips and tricks

    luathread I thought to post a little thread about scripting with lua. Posting some special things you can, should and should not do and why. I apologize if I appear messy or not understandable at some points : | This thread has nice comments and tips in the replies as well! Do remember to read...
  7. Rochet2

    Reforging

    Hi guys! Just dropping by to publish Trinitycore reforging script that I made over a year ago .. or 2, but never finished the blizzlike version of it. Get it: http://rochet2.github.io/Reforging.html What does it do? Change 40% of your item's stat to something else. Sends item packets so you...
  8. Rochet2

    Dress NPCs coremod

    Hello. Ppl have asked once in a while if you could dress NPCs some gear and items etc. Usually people answer that you need to make a patch or similar. Through some core editing and the mage spell "mirror image" (not actually using the spell, but the packet and flags) I made it possible to dress...
  9. Rochet2

    Eluna Transmogrification

    Converted my transmogrification to eluna :) Its the earlier version, not the latest due to the latest using DBC files. The script is rather plug and play. You just need to set your NPC's entry to the top of the script: local NPC_Entry = 100 Everything else is handled automatically (DB table...
  10. Rochet2

    [Lua] Enchant visual system and gossip

    I think it was Nerc who asked me about something and I got this idea of adding enchant visuals to items. It would make noob items and others look a lot more epic if they had epic enchant visuals :P So I started thinking what I would need and how it would work. I knew it would probably be like...
  11. Rochet2

    [Trinitycore] MultiVendor 3.3.5a

    Hello. Someone had some problems with Evilfairy's script, so I took a look at it and decided to make my own. In contrast to the "not core mod", "not database" idea, I decided to make this script editable through database and made it a core modification so I could just tweak the base gossip...
  12. Rochet2

    [Arcemu] Lua Transmogrification

    Get it: Lua, save to scripts folder: http://pastebin.com/VFTUmPTm Run to characters database: http://pastebin.com/08NXuUAj HowTo: To transmogrify an item you need to have the item equipped you want to change. Then you need to have an item of the same type (inventory type to be exact) somewhere...
  13. Rochet2

    [Trinitycore] Transmogrification 3.3.5a

    Video:*Transmogrification - YouTube Key features: Blizzlike dynamic (custom items work) customizable from config uses gossip menus Limitations: (These are defaults, can be configured) http://www.wowwiki.com/Transmogrification Get It: http://rochet2.github.io/Transmogrification.html How To...
Top