Jump to content

Droidz

Administrators
  • Posts

    12587
  • Joined

  • Last visited

Everything posted by Droidz

  1. Droidz

    Не работает

    http://wrobot.eu/forums/topic/4360-не-работает/#comment-20126
  2. Hello, can you read this: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
  3. Hello, http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 Step 10, 14
  4. Do you have try to restart wrobot?
  5. Hello, WRobot use injections.
  6. Hello, you can also use product "WRotation" and click on map in the tab "Map" to go to selected zone
  7. http://wrobot.eu/forums/topic/2811-bg-join/?do=findComment&comment=12996
  8. Hello, I have activated your subscription.
  9. Done: (Re)Launch WRobot and accept update.
  10. I start to work on this patch
  11. Intead spellname put CastSpellByName("Breath of Respite"); In spell settings put "true" at "not spell is lua script". And add all conditions (like target distance, you lua conditon, timer, ...)
  12. Hello, Can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
  13. Like this (not tested): public static void CastByPlayerName(int spellId, string playerName) { string lua = "CastSpellByID(spellID, 'focus')"; var target = ObjectManager.GetObjectWoWPlayer().FirstOrDefault(p => p.Name == playerName); try { if (target != null && !target.IsValid) return; if (target.IsMyTarget) { Lua.LuaDoString(lua.Replace("spellID", spellId.ToString()).Replace("'focus'", "'target'")); } else if (target.Guid == ObjectManager.Me.FocusGuid) { Lua.LuaDoString(lua.Replace("spellID", spellId.ToString())); } else { var currentFocus = ObjectManager.Me.FocusGuid; ObjectManager.Me.FocusGuid = target.Guid; Lua.LuaDoString(lua.Replace("spellID", spellId.ToString())); ObjectManager.Me.FocusGuid = currentFocus; } } catch { } } In second argument of castspellby... (in legion version), it is not player name, but it is unitid http://wow.gamepedia.com/UnitId
  14. Hello, Can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
  15. Hello, you can check Reaction: wManager.Wow.ObjectManager.ObjectManager.Target.Reaction You can also use: wManager.Wow.ObjectManager.ObjectManager.Target.IsAttackable or use this lua code: Lua.LuaDoString<bool>("return UnitCanAttack('player', 'target');")
  16. Lua.LuaDoString("OverrideActionBarButton1:Click()"); ClickOnTerrain.Pulse(new Vector3(ObjectManager.Target.Position)); Do you have try this?
  17. Hello, Can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
  18. Hello, in advanced general settings tab "Food/Drink" put "Healing Surge" in "Food name" and activate option "(not an item, is spell)".
  19. Bonjour, metter "False" dans "Spell Settings" à "Check if target is in view" et à "Check if spell is good distance".
  20. Hello, http://wrobot.eu/forums/topic/1118-snippets-of-lua-codes-for-fightclass/?do=findComment&comment=11958
  21. Try to active option "Ninja" in advanced general settings tab "Looting and farm...". You can also try to increment min/max "Latency" in advanced general settings tab "Other options".
  22. Hello, you can test your lua script in tab "Tools" > "Development Tools" > past code in textbox and click on "Lua (...)".
  23. Hello, WRobot can get stucks, but this mainly depends of the used profile.
×
×
  • Create New...