Everything posted by Droidz
-
Regen before looting
Download DontSkipRegenIfFlaggedInCombat.cs, move file in folder "wrobot\plugins", launch wrobot, tab "plugins" activate this
-
[Vanilla][Hunter] Bags not full (Ammo Bags)
Hello, in advanced general settings, in min free slots change value and put ammo bag slots count + 3
-
Cant figure out how to eat and drink, keep dyin
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
relogger issue
Hello, try to reinstall WRobot in new folder and disable your antivirus
-
Bot can't connect to server
Hello, try to restart you computer, if problem is not resolved try to disable your antivirus
-
32 bit..
Hello try to download another client
-
Error #132 with relogger
Try to disable your antivirus and useless programs ( https://www.google.com/search?q=System.ComponentModel.Win32Exception+(0x80004005) )
-
Keep dying under water
Hello, try to disable your addons, can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
General settings dont work
Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 (step 14)
-
Error #132 with relogger
Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 install slimdx
-
Bot just doesnt start
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
auto push bouton
Bonjour, Dans "Advanced general settings" vous pouvez utiliser "My Macros"
-
SellItem error
Hello, wait next update
-
Level 1, attack mob.
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
buying a licence
Hello, I don't sell and don't use your personal informations, I request these because I am obliged to have invoices of my sales (for my company, I need to keep these informations 5 years, it's the laws of my country).
-
Sitting during Regeneration.
Hello, Me.IsSitting is not in WRobot api, you cannot detect if your character is sit or not. Correct plugin code seem more like (not work) : using System.Threading; using wManager.Plugin; using wManager.Wow.Helpers; public class Main : IPlugin { public void Initialize() { while (Conditions.ProductIsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (robotManager.Helpful.Logging.Status == "Regeneration") { if (!wManager.Wow.ObjectManager.ObjectManager.Me.IsSitting) { wManager.Wow.Helpers.Move.SitStandOrDescend(); Thread.Sleep(1000); } } } Thread.Sleep(500); } } public void Dispose() { } public void Settings() { } } Try this: using System.ComponentModel; using System.Threading; using robotManager.FiniteStateMachine; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += delegate(Engine engine, State state, CancelEventArgs cancelable) { if (state.DisplayName == "Regeneration") { Move.SitStandOrDescend(); Thread.Sleep(1000); } }; } public void Dispose() { } public void Settings() { } }
-
Sit during Regen + Specific food vendor
https://wrobot.eu/forums/topic/9777-sitting-during-regeneration/
-
Missing flightmasters in Taxi DB
Hello, it is normally automatic, do you use wow addons? if yes try to disable all.
-
Bot keeps attacking every single red mob?
Hello, https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=13088
-
Vanila Set Target in code
Hello, use Me.Target (instead Me.Focus)
- help
-
RMB求帮助
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
- 求帮助
-
Blank Screen in products
Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
GoToTask conditionExit
Hello, this is sample code with defaut condition: GoToTask.ToPosition(Vector3.Zero, 3.5f, false, context => Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore);