Jump to content

Droidz

Administrators
  • Posts

    12618
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, thank you for report, you can continue at use wrobot (this can cause problem if this happen frequently, I will change message in WRobot)
  2. Hello, put "False" at spell settings "Check if know spell" (or use lua)
  3. Can you share your log
  4. Yes bliz have added new detection vector but this don't target WRobot.
  5. Update done
  6. http://wrobot.eu/forums/topic/4561-update-status-patch-710-build-23171/
  7. I start to work on this patch
  8. Hello, you can try to use wrobot with shortcut "WRobot no dx", try also de remove folder "Cache" in Wow install.
  9. Update again wrobot
  10. Changed Status to Fixed
  11. I'll fix this problem quickly.
  12. http://wrobot.eu/bugtracker/cpu-load-on-latest-update-wotlk-client-r584/?do=findComment&comment=3582
  13. Changed Status to Confirmed Changed Version to All
  14. Hello, I know this website, admins of this website make money with cracked bots, It's a shame that some people prefer to pay this team instead softwares creators. Normally, all WRobot cracks are obsolete or not working
  15. Hello, this problem is probably caused by your fightclass. Can you share your fightclass
  16. Hello, yes WRobot support 7.1: http://wrobot.eu/files/file/2-wrobot-official/
  17. Hello, I have upgraded your key, you can now use this version of wrobot.
  18. http://wrobot.eu/forums/topic/4546-wrobot/?do=findComment&comment=21183
  19. Hello, I have upgraded your subscription, you can now run old WRobot version.
  20. Hello, use this plugin: using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.FarmingEvents.OnFarmSuccessful += delegate(WoWGameObject node) { Thread.Sleep(5000); }; Logging.Write("[PauseAfterGathering] Loadded."); } public void Dispose() { Logging.Write("[PauseAfterGathering] Disposed."); } public void Settings() { MessageBox.Show("[PauseAfterGathering] No settings for this plugin."); } } PauseAfterGathering.cs
  21. Hello, Try to increment min/max latency in advanced general settings tab others.
  22. Hello, wait next update and use code like: EventsLuaWithArgs.OnEventsLuaWithArgs += delegate(LuaEventsId id, List<string> args) { if (id == LuaEventsId.QUEST_ACCEPTED && args.Count == 2) // http://wow.gamepedia.com/Events/Q#QUEST_ACCEPTED { var title = Lua.LuaDoString<string>("local title = GetQuestLogTitle(" + args[0] + "); return title;"); Logging.WriteDebug("Quest accepted: '" + title + "' (id=" + args[1] + ")"); } else if (id == LuaEventsId.QUEST_REMOVED && args.Count == 1) // http://wow.gamepedia.com/Events/Q#QUEST_REMOVED { Logging.WriteDebug("Quest removed: id=" + args[0]); } // ... };
  23. Hello, like this: bool isDead = Lua.LuaDoString<bool>("return UnitIsDead('target')"); string spellName = Lua.LuaDoString<string>("local name, rank, icon, castingTime, minRange, maxRange, spellID = GetSpellInfo(1); return name;"); // only in next wrobot version List<string> returnGetSpellInfo = Lua.LuaDoString<List<string>>("return GetSpellInfo(1);"); string spellName2 = returnGetSpellInfo[0];
  24. Hello, use condition "C Sharp Code": wManager.Wow.ObjectManager.ObjectManager.Target.Name != "Slagmaw" or to avoid to use spell on all elites: !wManager.Wow.ObjectManager.ObjectManager.Target.IsElite
×
×
  • Create New...