-
Posts
12581 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Wrobot is not working at all
Droidz replied to Theosis's topic in WRobot for Wow Wrath of the Lich King - Help and support
Hello, try to install visual studio -
Conditional Additional C# code
Droidz replied to Andreavnn's topic in WRobot for Wow Vanilla - Help and support
remoive ";" line 20 -
Bonjour, même dans "dev.. tools" > "Player/Target Buff/Debuff" le buff n'ai pas trouvé?
-
try to disable option "skip/blacklist if cannot make path"
-
Hello, add hotspots
-
Hello, try to disable option "auto calcul range..." in advanced general settings
-
Party setup Buff & Heals
Droidz replied to John85's topic in WRobot for Wow Vanilla - Help and support
Hello, can you active spell debug mode and share your log file -
Wrobot misses regen phase
Droidz replied to ed31's topic in WRobot for Wow The Burning Crusade - Help and support
Hello, you can edit regen start/end % and food/drink name in advanced general settings. Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ). -
Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 (install required software)
-
Hello, in fightclass if you use option "in combat only" wrobot will not casts spells. You can try to dispose figthclass wManager.Wow.Helpers.CustomClass.DisposeCustomClass(); wManager.Wow.Helpers.CustomClass.LoadCustomClass();
-
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Hello, Winifix method can be detected easily, and I have check darklinux method, I never see game change this value, I prefer to be careful (because if the game does not change this value it can be detected easily too)(and this don't resolve direction problem, it just improves the fluidity of movement)
-
hello, try to use another fightclass
-
To celebrate new year, you can get 35% Off with discount code YEAR2018 (this coupon can then be entered on the checkout screen) (expires 01/01/2018, 6:00 PM UTC+1).
-
To celebrate new year, you can get 35% Off with discount code YEAR2018 (this coupon can then be entered on the checkout screen) (expires 01/01/2018, 6:00 PM UTC+1). View full article
-
Conditional Additional C# code
Droidz replied to Andreavnn's topic in WRobot for Wow Vanilla - Help and support
https://wrobot.eu/forums/topic/7634-movement-follow-path-strafing-or-running-backwards/?do=findComment&comment=34860 it is better code to move back -
Conditional Additional C# code
Droidz replied to Andreavnn's topic in WRobot for Wow Vanilla - Help and support
static Main() { wManager.Events.FightEvents.OnFightLoop += (unit, cancelable) => { if (unit.IsValid && ObjectManager.Target.IsTargetingMyPet && ObjectManager.Target.GetDistance <= 12) { wManager.Wow.Helpers.Move.Backward(Move.MoveAction.PressKey, 2000); } }; robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += delegate (Engine engine, State state, CancelEventArgs cancelable) { if (!string.IsNullOrWhiteSpace(state.DisplayName) && state.DisplayName == "Regeneration" && ObjectManager.Pet.IsValid && ObjectManager.Pet.IsAlive && ObjectManager.Pet.HaveBuff("Feed Pet Effect") && !state.NeedToRun) { while (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore && ObjectManager.Pet.IsValid && ObjectManager.Pet.IsAlive && ObjectManager.Pet.HaveBuff("Feed Pet Effect")) { Thread.Sleep(800); } } }; } -
Salut, Essaye un plugin comme: using robotManager.Products; public class Main : wManager.Plugin.IPlugin { private IProduct instanceFromOtherAssembly; public void Initialize() { instanceFromOtherAssembly = Products.LoadProductsWithoutInit("Tracker"); if (instanceFromOtherAssembly != null) { instanceFromOtherAssembly.Initialize(); instanceFromOtherAssembly.Start(); } } public void Dispose() { if (instanceFromOtherAssembly != null) { instanceFromOtherAssembly.Dispose(); instanceFromOtherAssembly = null; } } public void Settings() { } }
-
Hello, 1. To drink use "party chat command" with setting like https://wrobot.eu/forums/topic/2834-command-to-party-by-party-chat/?do=findComment&comment=13014 2 You cannot change that
-
Bot does not regenerate or attack from range
Droidz replied to derfington's topic in General assistance
Hello, you can select min/max hp % and food/spell name to regen in advanced general settings. Spells are managed by fightclass -
Conditional Additional C# code
Droidz replied to Andreavnn's topic in WRobot for Wow Vanilla - Help and support
Hello, try code like (not tested): static Main() { robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += delegate (Engine engine, State state, CancelEventArgs cancelable) { if (!string.IsNullOrWhiteSpace(state.DisplayName) && state.DisplayName == "Regeneration" && ObjectManager.Pet.IsValid && ObjectManager.Pet.IsAlive && ObjectManager.Pet.HaveBuff("Feed Pet Effect") && !state.NeedToRun) { while (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore && ObjectManager.Pet.IsValid && ObjectManager.Pet.IsAlive && ObjectManager.Pet.HaveBuff("Feed Pet Effect")) { Thread.Sleep(800); } } }; } -
Ok, how many time he miss for you before blacklist?