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

  1. V

    Depressing

    it's really depressing when the search button is being index hovered by the log out button maybe due to my browser but its been that for a while. /cry
  2. V

    [SOLVED] Command Timer

    I'm trying to make a custom kick command (.vkick) that vip players can use every 2 hours. uint32 Cooldown = 10; uint32 RemainingTime = Cooldown-time(NULL); std::string RemainingTimeStr = secsToTimeString(uint32(RemainingTime), true); std::string CooldownTotalStr =...
  3. V

    [SOLVED] Rochet2 Transmog Vendor

    https://github.com/Rochet2/TrinityCore/tree/transmogvendor/src/server/scripts/Custom/TransmogDisplayVendor Latest rev, as of right now. (Fresh Compiled 1hr ago to make sure i wasnt messing up). The gossip menu works fine, the issue I'm having is... [Head] -> [Epic] -> ?? After selecting the...
  4. V

    TrinityCore 3.3.5 Gossip Real Time Update

    Running TC 3.3.5, latest rev. I'm trying to make a CreatureScript that will show in a gossip menu item, the remaining respawn time of a world boss. I have so far.. class boss_timer : public CreatureScript { public: boss_timer() : CreatureScript("boss_timer") { } bool...
  5. V

    Guild Bank Call Function

    Hi again, is there a way to show guild bank through a gossip NPC? For example; to show a players bank: SendShowMailBox(); to show a players mailbox: SendShowBank(); Is there a way to show guild bank?? I've looked at GAMEOBJECT_TYPE_GUILD_BANK (in Guild.cpp) to maybe find a reference for how...
  6. V

    [SOLVED] Format.h Error

    error C2248: 'fmt::internal::MakeValue<Formatter>::MakeValue' : cannot access private member declared in class 'fmt::internal::MakeValue<Formatter>' C:\**\**\**\**\Trinity\dep\cppformat\format.h Anyone wanna take a crack at what this hunky junk means? I was editing one of my custom scripts...
  7. V

    [SOLVED] Flying in Custom Map made in Noggit

    I've come to believe this isn't possible at all
  8. V

    [SOLVED] Warcry CMS Legit?

    Does anyone think this Warcry CMS sale is actually legit or is this guy trying to scheme for money lol https://sellfy.com/p/E62z/
  9. V

    [SOLVED] Loot_Template maxcount/mincount

    For TrinityCore 3.3.5, creature_loot_template for example has the following columns: MinCount MaxCount both in which are using TINYINT (0-255 unsigned) I want them to use SMALLINT (0-65535 unsigned), but in order to do this I need to do a core edit like with bypassing the item stat_value limit...
  10. V

    [SOLVED] ACE

    Since trinitycore no longer supports the use of ACE libraries is there any simple way to remove the reference this older script is using with it. It's the Anticheat System. I would post the code but its literally 3 different .cpp files and 3 different .h files, I can fix most of the errors due...
  11. V

    [SOLVED] Creature Display IDs

    Where are the Creature Display IDs defined? I'm not getting much from CreatureDisplayInfo.dbc Basically I have a display model that has 2 models by default, it's one id but two different models, i guess 50% chance to get either or. Anyone know where this is defined so I can edited it to maybe...
  12. V

    [SOLVED] C++ PvP combat teleport script

    I'm trying to make a script that will teleport any player that initiates PvP in a zone and or area to Gurubashi. I compile the following with no errors however it doesn't seem to wanna work, and i'm sure i'm using the wrong arguments however any help is appreciated! #include "ScriptPCH.h"...
  13. V

    [SOLVED] TrinityCore LoginDatabase.PQuery to another Host

    Hi Suppose I wanted to connect to a database like so: LoginDatabase.PQuery("SELECT `vp`, `dp` FROM `cms`.`account_data` where `id`=%u", player->GetSession()->GetAccountId()); Which will connect to the database "cms" regardless of the fact that it's a Login query (normally auth) Suppose I...
  14. V

    [SOLVED] TrinityCore Gossip Variable Args

    Is it possible to include Variable Args in a ADD_GOSSIP_ITEM ? Example : player->ADD_GOSSIP_ITEM(4, "Current VP:%u", GOSSIP_SENDER_MAIN, 0); Into something relevant to: WorldDatabase.PQuery("SELECT `name` FROM `item_template` where `entry`=%u", itementry); ^ "itementry" being the...
  15. V

    [SOLVED] npc_trainer Pre-Defined Spell Template

    In `npc_trainer` is where you set spellids for a trainer flag'd NPC to learn. However there is a pre-defined template of spells used for a specific set of class spells/professions. http://collab.kpsn.org/display/tc/Trainer+reference What I need help with is finding where this pre-defined...
Top