May 23, 20169 yr Hi everyone I use Create Fight Class tool for creating my dps rotation for raids and pvp xt. Mostly does it part and i dont know about C# codes and how they are applied i use bot for combat rotation Its fine but there are some conditons that ""Create Fight Class tool"" dont inherit, and im told it can only be done in C# for exp: i wanted to do for shaman when im not moving; if there is 1 mob (around) and no totem -- put searing totem if there is 1 mob and searing totem --- do nothing if there is 2 or more mobs and no totem -- put magma totem if there is 2 or more mobs and searing totem -- put magma totem if there is 2 or more mobs and magma totem-- do nothing in this case, there is no condition to check which totem is active through the ""Create Fight Class tool"". you can check if there is an active fire totem but u cant check if its a magma or searing which are both fire totems What i ask is; Is there a way to do this with ""Create Fight Class tool"". It can only be done in C# ? Which conditions there are that arent in ""Create Fight Class tool"". Where can we learn from it Lets say someone else posted a C# code here for the totem part. Can i add it via ""Create Fight Class tool"". (I need it so i can keep modifying it when needed) Ty in advance Keep up the good work please
May 23, 20169 yr Author 8 minutes ago, dida1990 said: Are you into lua? http://wowwiki.wikia.com/wiki/API_GetTotemInfo According to lua, u cant check if the fire totem active is a searing or magma?
May 23, 20169 yr 2 minutes ago, [email protected] said: According to lua, u cant check if the fire totem active is a searing or magma? I guess with this http://wowwiki.wikia.com/wiki/API_SetMultiCastSpell it is somehow possible, but currently I am not at home, so I can't write anything :/
May 23, 20169 yr I check the api later and give you feedback :) there is a way, there is always a way :) Gesendet von meinem D6603 mit Tapatalk
June 30, 20169 yr pretty simple actually, just check it on name. greets, Dreamful haveTotem, totemName, startTime, duration = GetTotemInfo(1) if totemName ~= "Magma Totem" then return true else end
Create an account or sign in to comment