-
Content Count
574 -
Joined
-
Last visited
About iMod
-
Rank
Advanced Member
Recent Profile Visitors
5215 profile views
-
maukor reacted to a post in a topic:
Movement Speed in Travel Form while in combat
-
TheSmokie reacted to a post in a topic:
Movement Speed in Travel Form while in combat
-
iMod started following Not subbing next month.., Movement Speed in Travel Form while in combat, Calling for developers and testers and 4 others
-
Movement Speed in Travel Form while in combat
iMod replied to maukor's topic in WRobot for Wow Legion - Help and support
Take a look at "ObjectManager.Me.SpeedMoving" -
TheSmokie reacted to a post in a topic:
Snippets C# codes for Fight Classes
-
WoWUnit Extension "IsAutoAttacking" (WOTLK) /// <summary> /// Gets the flag if the unit is auto attacking. /// </summary> /// <returns>Returns true if the unit is auto attacking, otherwise false.</returns> public static bool IsAutoAttacking(this WoWUnit instance) { // Read bool result = Memory.WowMemory.Memory.ReadBoolean(address: instance.GetBaseAddress + (uint)0xA20); // Return return result; } I'm not sure about the other extension offsets.
-
My code does the same if i'm not total wrong. It just gets the highes talent and returns a "Number/ID" instead of the name.
-
Nice to see some progress even on that pc of old code ;) One thing i don't understand is how can it be more accurate if you still loop over the tabs and take the one with the highes points? Is is because you read out the name? If so how about multi language can that cause some issues? I know its just a sample code but you may should check if its not a priest because you don't got any else block. (2cents)
-
iMod reacted to a post in a topic:
Calling for developers and testers
-
You also had to pay if you want a good rotation thats why they implemented the buddy store. The quest profiles where made by a guy who got paid for it. I would not call it directly "free".
-
79135 reacted to a post in a topic:
target not in line of sight
-
[TAURI] Wrobot detected
iMod replied to arkhan's topic in WRobot for Wow Mists of Pandaria - Help and support
Are you using their client? I'm using the original one. -
Droidz reacted to a post in a topic:
[TAURI] Wrobot detected
-
[TAURI] Wrobot detected
iMod replied to arkhan's topic in WRobot for Wow Mists of Pandaria - Help and support
i'm level 30+ now using wrotation without ban. -
Apexx reacted to a post in a topic:
Key press lua, cant get it to work
-
Ah damn, yeah i remember that issue with the dummies.
-
morris79 reacted to a post in a topic:
Take my Focus target as Tank
-
#region get tanks List<WoWPlayer> getTanks() { // Focus set? if(ObjectManager.Me.FocusObj != null) { // Return list with the focus object return new List<WoWPlayer>(){ObjectManager.Me.FocusObj}; } // Return empty list return new List<WoWPlayer>(); } This is just a quick and dirty solution.
-
Change your init method to public void Initialize() // When product started, initialize and launch Fightclass { _isLaunched = true; { EventsLuaWithArgs.OnEventsLuaWithArgs += delegate (LuaEventsId id, List<string> args) { if (id == LuaEventsId.MODIFIER_STATE_CHANGED && args.Count == 2) { // Possible values are LSHIFT, RSHIFT, LCTRL, RCTRL, LALT, and RALT string key = args[0]; // 1 means that the the key has been pressed. 0 means that th
-
iMod reacted to a post in a topic:
Need help with Flightclass Focus target
-
iMod reacted to a post in a topic:
Is it possible to get stats?
-
Only in theorie, you can calculate and make a guess, otherwise no. If i'm not wrong there was a lua library that does it for a healing addon but sadly i don't remember the name y.y
-
Garub reacted to a post in a topic:
Can I convert honorbuddy plugin into Wrobot's?
-
Just hover with your mouse over the red text and tell me the error message wich should pop up 🙂
-
Nah i'm lucky i don't had to update any of my projects after updates since yet and DistanceTo is working for me (WOTLK) What kind of error do you get?
-
The forum is full of posts like yours. If you buy a product without to inform your self about, its your own fault. Those people can be happy that there are some ppl who selling their stuff that cheap. And for real try to create your own and you will see if you want quality you need to pay for it. Welcome in the world.
-
The Party namespace offers you a whole object list of the player so you just need to select 2 player and use the DistanceTo property of the position property.of the WoWPlayer object you selected. But yeah you also can use the guid.
