• 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 blackmetal

  1. B

    TrinityCore 5.x.x Compile Error with new function

    Hi, as the title. I was trying to copy some function from another source to my source Here is the commit: http://pastebin.com/FfNuj6u6 And everything is clean, no error appears before compile. But when compile complete, it show error like this: Error 14 error LNK2001: unresolved external...
  2. B

    TrinityCore-Multi quest dialog script

    Hi, as the title how i can change the default quest dialog like "Greetings, <Name>" :clap2::clap2::clap2::clap2:
  3. B

    TrinityCore-Multi How to reduce base value of spell

    Hi, as the title, is there anyway i can reduce base value of spell with C++ code ( i'm already searching in table in DB, but seem like not helping ). For example i want reduce this spell http://www.wowhead.com/spell=8004/healing-surge from 412.5% to 200%, is there anyway i can do this...
  4. B

    [SOLVED] Remove pet aura from pet?

    Hello guys, i wonder those code has problem or not but everytime it try to remove aura from pet, Server crash :megusta: if (GetTypeId() == TYPEID_UNIT && damage > 0 && HasAura(53257)) { Player* player = this->ToPlayer(); Pet* pet = player->GetPet(); if (Aura* aura = GetAura(53257)) {...
  5. B

    [SOLVED] Diffrent Between 32bit and 64bit?

    Hi guys, as the title, is it really different?. I have a small Server that running x64 and worldserver eat Ram as much as it can in 64 bit. But When i use worldserver 32bit, it look like does not eat more than 4Gb Ram, 1 day after running it, server auto crash. First i thought something make...
  6. B

    [SOLVED] Custom script in Cmangos and Modify something!

    Hi, i just started something fun with Cmangos TBC, but i only have exp with trinitycore, they are almost the same but i can not find custom script folder in Cmangos :kiddingme:, i'm going to apply some custom script that change defense skill, wand skill getting max at login, i found some script...
  7. B

    [SOLVED] Where is chat when disable chat between faction

    Hi, can somebody tell me where it being handled. Example: Player A - Faction Ally say: I dont give ...... Player H - Faction Horde see: [Common] I dont give ...... i already disable chat between faction in worldconfig. But where to see it being handled, i mean player H should see something...
  8. B

    [SOLVED] Custom Restricted Flight Area (Again)

    After searching about no fly zone for specific zone, i found this http://emudevs.com/showthread.php/1931-HELP-Custom-Restricted-Flight-Area. And here the code from script i coppied // Copy from Tommy - Emudevs - Thank you for create this script :) class restricted_fly : public PlayerScript {...
  9. B

    [SOLVED] NPC Respawn Event

    Hi, currently i'm looking forward for a help with make a NPC appear ( spawn ) each week in a specific day. And it will repeat till i stop it. I only know how to do respawn NPC in a game event, but it will not repeat. :sweaty::sweaty::sweaty::sweaty:
  10. B

    [SOLVED] NPC Auto Complete quest!

    Hi. I have an idea that a NPC will list all quest of Player not complete to a gossip, then player click into Gossip, it may require golds to clickable, after that quest are set to complete. I only have idea, but i don't know start from where :-<
  11. B

    [SOLVED] Trinitycore Function

    Hi, i'm currently learning C++ and i have a question: I'm looking for a function that when equip item, it does something. Example ( I get this script through internet ) #include "ScriptPCH.h" #define item_id 999043 class lk_ilusion : public ItemScript { public: lk_ilusion() ...
  12. B

    [SOLVED] create custom mount for cataclysm

    Hi, i'm looking for how to do this. All guide i have read is made for 3.3.5a not 4.3.4. I don't want create custom mount from original mount, it must be new! As far i know that need create a spell that will summon a creature. I coppied a spell ( example: 49322 ), but i don't see where i can...
  13. B

    [SOLVED] Question About game_event_pool

    Hi,i'm trying to understand this table. As description of this table: This table determines if a given pool is active for a given game event. it means it linked with table pool_template? I have a pool creature that have 1 NPC with 3 respawn, only 1 will available to see,if you kill that...
  14. B

    [SOLVED] Weird Cmake Problem when try to Compile TC Source

    I have VS Ultimate 2013,when i run Cmake to get file to Build Core, i get this error: The C compiler identification is unknown The CXX compiler identification is unknown CMake Error at CMakeLists.txt:12 (project): No CMAKE_C_COMPILER could be found. CMake Error at CMakeLists.txt:12...
  15. B

    [SOLVED] Get max proffesional through NPC ingame

    As the title, is there anyway i can get max proffesional through NPC ingame with cost gold or item?. Thanks.
Top