-
Content Count
300 -
Joined
-
Last visited
About Apexx
-
Rank
Advanced Member
- Birthday 05/05/1983
Profile Information
-
Gender
Male
Recent Profile Visitors
1837 profile views
-
Sleepwalker reacted to a post in a topic: Use certain spell when a certain number of mobs are in range?
-
Here's what I use to check attackers in range: public static int GetAttackerCountInRange(float yards) { int EnemyCountInRange = ObjectManager.GetUnitAttackPlayer().Count(t => t.IsAlive && t.IsValid && t.IsAttackable && t.InCombat && t.GetDistance <= yards); if (EnemyCountInRange > 0) { Logging.WriteDebug($"Enemy attacking count = {EnemyCountInRange}"); return EnemyCountInRange; } return 0; }
-
Zontir reacted to a post in a topic: Which server and version?
-
I have played Warmane on and off for a long time now and was never caught.. I cannot speak for other people's experiences though.
-
Apexx started following Official WRobot API Documentation and Which server and version?
-
Hey, I have a few recommendations if you like Wrath 3.3.5... Warmane - Icecrown (Very packed server with long queue times to login) - Warmane - Lordaeron Wow-mania
-
Droidz reacted to a post in a topic: Official WRobot API Documentation
-
Apexx reacted to a post in a topic: Official WRobot API Documentation
-
This has been long awaited for! Thank you everyone for your dedicated work towards the project!
-
Apexx reacted to a post in a topic: Happy New Year 2021
-
Apexx started following Happy New Year 2021
-
Happy new year @Droidz! Thank you!
-
Apexx reacted to a article: Happy New Year 2021
-
Apexx reacted to a post in a topic: BfA version
-
Apexx reacted to a post in a topic: Detect Target Immunities (ie: Immune to Diseases)
-
Detect Target Immunities (ie: Immune to Diseases)
Apexx replied to Apexx's topic in Developers assistance
Perfect! Thank you very much, I will try this out soon. -
Apexx reacted to a post in a topic: Detect Target Immunities (ie: Immune to Diseases)
-
I was surfing the forums, and Google for about 20 minutes looking for anything to help me figure this out. I am writing a fight class using C#, and Lua. For the first time I ran into a problem where the combatants I was fighting with were immune to my "Devouring Plague" and was left wasting mana, because each mob was immune to diseases. Is there anything to catch such a thing? Thank you! Edit* Mob entity: https://wotlkdb.com/?npc=32400 There's no real information regarding immunizes.
-
⎝͠҉̭̫͖̗͇ͅTraWin ̍̍̍̍̍̍̍̍̍ reacted to a post in a topic: Bot spiraling up as high as possible
-
Apexx reacted to a post in a topic: Bot spiraling up as high as possible
-
Fighting with mob, attacked by player, bot keep going on mob
Apexx replied to Artek's topic in General assistance
Not at the moment, but this might be a plugin feature in the near future....... -
Matenia reacted to a post in a topic: Authenticate Your Intellectual Property
-
maukor reacted to a comment on a file: PauseSafely Plugin
-
Xercses reacted to a post in a topic: Mage dont stop conjouring Water
-
In Settings -> Advanced Settings -> Other tab, make sure to match your in game latency. This may or may not help. If that doesn't fix it, it sounds like an issue inside the selected Fight Classes.
-
But.. if anyone needed code for this: Boolean method: internal static bool PlayerKnowShadowWeaving() { return Lua.LuaDoString<bool>(@" local numTabs = GetNumTalentTabs(); for t=1, numTabs do local numTalents = GetNumTalents(t); for i = 1, numTalents do nameTalent, _, _, _, currRank, _ = GetTalentInfo(t, i); if nameTalent == 'Shadow Weaving' and currRank > 0 then return true; end end end" ); } Usage: // Shadow Word: Pain- Only if player
-
Glad you were able to figure it out. Would you mind editing the post title to, "[Solved] title here". It helps a lot for people searching for similar issues and shows, "Solved". Thanks!
-
Apexx reacted to a comment on a file: [Beta][Raven] Selector - Quest Rewards, Many other functions!
-
TheSmokie reacted to a comment on a file: [Beta][Raven] Selector - Quest Rewards, Many other functions!
-
Apexx started following [Beta][Raven] Selector - Quest Rewards, Many other functions!
-
[Beta][Raven] Selector - Quest Rewards, Many other functions!
Apexx commented on TheSmokie's file in Plugins - Wotlk