Everything posted by Droidz
-
Minimize relogger
If your private server can read process arguments it can read WRobot files name and content. I don't know any private server that does this.
-
Npc and flight master data base
Hello, You need to put true at the "save" param: http://wrobot.eu/byme/doc/html/M-wManager.Wow.Helpers.NpcDB.AddNpc.htm NpcDB.AddNpc(TheNPC, true, false); For fightmaster: http://wrobot.eu/byme/doc/html/M-wManager.Wow.Helpers.Taxi.TaxiList.AddOrEditForCurrentPlayer_1.htm TaxiList.AddOrEditForCurrentPlayer(TheTaxiNode, true);
-
Lock Frame causing low fps
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).
-
Druid's mangle in cataclysm.
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')
-
how to make WRobot use macro while fishing ?
Hello, what macro do you want use?
-
i know mount but cant use
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() { } }
-
Minimize relogger
yes, use relogger shortcut with the argument: -MinimiseOnStart
-
Cant login to legion
Hello, if you can try again your problem should be resolved
-
i know mount but cant use
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
-
i know mount but cant use
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() { } }
-
it flies up until you put it on the ground
-
Cast un sort même quand un autre est en cour
Quelque chose comme ça : test.xml
-
Get system message text
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
-
wow is closing whenver i choose char to which wrobot should be linked.
Check in folder "Logs" if WRobot have geneted log file of no
-
I wanna play on a 7.3.5(26124) Server but when i use my Key on the "Old" Client for that Game Version it means that my key is not useable for this kind of Version....
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).
-
Relogger don't start the bot
Hello, check also if you have installed required software (mainly SlimDX, open file 'Readme.txt' in WRobot folder)
-
Minimize relogger
Hello, click on button "_" (top/right) to put relogger window in taskbar.
-
How to purchase/renew key?
Hello, you can buy subscription at this url https://wrobot.eu/store/category/2-wrobot/
-
i know mount but cant use
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/ ).
-
wow is closing whenver i choose char to which wrobot should be linked.
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/ ).
-
Cast un sort même quand un autre est en cour
Pouvez vous partager le fichier xml de la fightclass uniquement avec ce code
-
Cast un sort même quand un autre est en cour
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, ...)
-
Cast un sort même quand un autre est en cour
Bonjour, Vous avez l'option spell "Wait during casting", désactivée la.
-
How to force bot to learn profession?
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).
- Create Healthstones (warlock fightclass)