• 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. G

    [SOLVED] Target a random non-tank player

    [SOLVED] Target a random non-tank player Hello friends, I'm trying make my creature target a player that is not a tank. local targets = creature:GetAITargets() local target = creature:GetAITarget(1, true, math.random(2, CountTargets(targets))) function CountTargets(t) local count = 0...
  2. G

    [SOLVED] Trying to port over a boss, what's the problem?

    Nevermind, mark as solved :)
  3. G

    [SOLVED] How to figure player role (talent spec)?

    I want to figure out which role a player has like if the player is a healer, tank or DPS according to talents or perhaps gear? As far I know there's nothing that does that in TrinityCore. How would I achieve this?
  4. G

    [SOLVED] Cannot find ScriptPCH.h include custom scripts?

    I cloned a fresh ElunaTrinityWotlk source and when I added Rochet2's reforging script for example (or any other custom script, might be a general include problem), though git apply Reforging.diff and applied without errors. It can't find the ScriptPCH.h in the Reforging script. The header...
  5. G

    [SOLVED] Eluna on Archlinux?

    I want to use my brothers laptop to host my server, and it's running Archlinux. I'm not familiar with Linux at all but what my brother said was Arch has the same libraries and dependencies but just more up-to-date, and he succesfully compiled TC (without Eluna) before on it. Just to verify...
  6. G

    CharacterCreate.xml custom races.. how does it work?

    I've been trying to get a few races working, and I got it working to some extent at the character create screen.. but yeah the order is totally messed up cause of the XML file. What I know is that RaceButton1 -5 are the normal alliance races so those are working but it totally gets messed up...
  7. G

    Some method questions

    I'd like to know the following things: - How do you make a creature react completely passively? Making him stunned/pacified only removes melee, but not the combat animation. SetAllowedCombat seemed to work but a lot of times the boss cant get in combat anymore after that (even when setting it...
  8. G

    Eluna reload crashing yet again?

    I've had this problem before... The Eluna reload command is freezing my server. It's kind of different now though since it is seemingly random when it works and when it doesn't. When I add/remove a script or edit the command can work even if the script doesn't, but if I reload again it CAN crash...
  9. G

    GossipSendMenu?

    What does this method do exactly? I've seen it in a ton of scripts and I'm not really sure what it does. Could anyone clarify? :P
  10. G

    Learn all profession recipes?

    I'm trying to make a profession trainer, it can learn all professions and max them but is it possible to learn all the recipes (like the TC command) without manually adding every recipe spell in the code?
  11. G

    Vehicle problems (Leviathan MK II)

    Hi, Quite some time ago I worked on a Mimiron script, but now starting fresh I still have a problem with the MK II vehicle-wise. And I can't get anything to enter the MK II as a passenger. It used to be scripted on TC, but its dead now. The old script was still out there though which said it...
  12. G

    CMakeLists issue

    I'm having problems with even creating a fresh core for some reason. Getting TrinityCore to work is not a problem and neither is the compiling (Using VS 12) but once I use Eluna my CMakeLists seems to be getting messed up when pulling it, and it gets merge conflicts etc. I can't generate...
  13. G

    Some function questions

    Well I got my stuff working again, so I can focus on other stuff again. :P I have a few functions I don't really know how to use: First, creature:SetReactState(state), I believe it's how the creature reacts to enemies, in C++ you can change it to REACT_PASSIVE or REACT_AGRESSIVE. I wan't the...
  14. G

    Eluna reload not properly working

    Sadly not, the terminal not actually crashing I can still type it's just not responding to anything (for instance typing in commands). I have a crash log of today but it's most likely another crash I had today unrelated to this. Any ideas?
  15. G

    Eluna reload not properly working

    I've already seen another topic about the reload Eluna. I had the same problem with not having the command at all which is fixed now, but when I execute the command in either the terminal or in-game the worldserver crashes. I added the rbac to my database, and the cs_reload.cpp and rbac.cpp both...
Top