Jump to content

Droidz

Administrators
  • Posts

    12595
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, Do you have unlock or increment your max FPS in Wow settings? Sometime antivirus, wow addons, or some wrobot plugins/fightclasses can cause problems (try to disable all and reactive them one per one).
  2. look https://www.mmo-champion.com/threads/775852-Cat-Mangle-Macro RunMacroText('/cast Mangle(Cat Form)') Or, you can try to put spell in actionbar and use code like RunMacroText('/click ActionBarButton1')
  3. Hello, what macro do you want use?
  4. using robotManager.Helpful; using wManager.Wow.Helpers; using System.Diagnostics; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var timer = Stopwatch.StartNew(); robotManager.Events.LoggingEvents.OnAddLog += delegate (Logging.Log log) { if (timer.ElapsedMilliseconds > 3000 && log.Text.Contains("Tundra Mammoth)")) { Logging.WriteDebug("Press MultiBarBottomRightButton1"); Lua.LuaDoString("RunMacroText(\"/click MultiBarBottomRightButton1\")"); timer.Restart(); } }; } public void Dispose() { } public void Settings() { } }
  5. yes, use relogger shortcut with the argument: -MinimiseOnStart
  6. Droidz

    Cant login to legion

    Hello, if you can try again your problem should be resolved
  7. using robotManager.Helpful; using wManager.Wow.Helpers; using System.Diagnostics; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var timer = Stopwatch.StartNew(); robotManager.Events.LoggingEvents.OnAddLog += delegate (Logging.Log log) { if (timer.ElapsedMilliseconds > 3000 && log.Text.Contains("(Traveler's Tundra Mammoth)")) { Logging.WriteDebug("Press MultiBarBottomRightButton1"); Lua.LuaDoString("RunMacroText(\"/click MultiBarBottomRightButton1\")"); timer.Restart(); } }; } public void Dispose() { } public void Settings() { } } You can try this code please
  8. Try to use this bot plugin : Main.cs using robotManager.Helpful; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.LoggingEvents.OnAddLog += delegate(Logging.Log log) { if (log.Text.Contains("Cast Тундровый мамонт путешественника (Traveler's Tundra Mammoth)")) { Lua.LuaDoString("RunMacroText(\"/cast Тундровый мамонт путешественника\")"); } }; } public void Dispose() { } public void Settings() { } }
  9. Hello, I think your problem is here : Try to use "Flying" type vector
  10. Quelque chose comme ça : test.xml
  11. Hello, I am sorry I haven't found easy way to do that. You can try to hook the lua method that write system message
  12. Check in folder "Logs" if WRobot have geneted log file of no
  13. Hello, if you want to solve this problem quickly it is better to send me a private message (I need to change your subscription type manually).
  14. Hello, check also if you have installed required software (mainly SlimDX, open file 'Readme.txt' in WRobot folder)
  15. Hello, click on button "_" (top/right) to put relogger window in taskbar.
  16. Hello, you can buy subscription at this url https://wrobot.eu/store/category/2-wrobot/
  17. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  18. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  19. Pouvez vous partager le fichier xml de la fightclass uniquement avec ce code
  20. Utilise du code C# var sortPrincipal = new Spell("SpellNameInEnglish"); new Spell("SpellNameInEnglish").Launch(true, false); Thread.Sleep(1000 + Usefuls.Latency); while (Conditions.InGameAndConnected && ObjectManager.Me.IsCast) { if (sortPrincipal.IsSpellUsable) { Lua.LuaDoString("SpellStopCasting();"); sortPrincipal.Launch(true, true, true); } } (pas testé) Tu dois configurer manuellement les options du sort (distance, ...)
  21. Bonjour, Vous avez l'option spell "Wait during casting", désactivée la.
  22. Hello, you can add NPC trainer to your NPCDB (or in your profile). If you want do it manually, you need to use quest type "InteractWith" with custom condition (but you must have knowledge of C # and WRobot API).
  23. Hello, Lua.LuaDoString("local name,texture,offset,numSpells = GetSpellTabInfo(3); CastSpell((offset+1),'spell');");
  24. Hello, you use English game client?
  25. Hello, you can use event https://wrobot.eu/byme/doc/html/E-wManager.Events.LootingEvents.OnLootingPulse.htm But the easy way is to use wow addons for do that.
×
×
  • Create New...