Everything posted by 79135
- Bug with restart
-
Bug with restart
I wait more 30 min. Can it happen from the script? Idk how unsubscribe , help pls //Healing Touch !fight mana > 40% hp< 60% Logging.Write("Healing Touch !fight mana > 40% hp< 60%"); int percentHP = 60; int percentMana = 40; bool need = true; robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if(ObjectManager.Me.HealthPercent < percentHP + 5 && ObjectManager.GetUnitAttackPlayer().Count(u => u.GetDistance < 100) == 0 && need) { cancelable.Cancel = true; while(ObjectManager.Me.HealthPercent < percentHP + 5 && ObjectManager.GetUnitAttackPlayer().Count(u => u.GetDistance < 100) == 0 && !ObjectManager.Me.IsDead) { } } };
-
Bug with restart
- MovementManager.Face break
-
MovementManager.Face break
while(ObjectManager.Me.Position.DistanceTo(new Vector3(377.3996, -134.4637, -2)) > 3) { MovementManager.Face(new Vector3(377.3996, -134.4637, -2)); Thread.Sleep(500); Move.Forward(Move.MoveAction.PressKey,100); Thread.Sleep(500); } Bot never come into point
-
Check if pathsfinder cannot find path
Thanks a lot
-
Check if pathsfinder cannot find path
How to check it : [Path-Finding] Cannot find path ? I need in for: if(!PathsFinder.FindPath(new Vector3()) {}
-
How to active plugin from plugin?
Thanks) . How about quester profile, do you don't know?
-
How to active plugin from plugin?
Just example please). And in quester profile quest type "Kill and Loot" I can as the extract point route in to is complete condition? (return ObjectManager.Me.Position.DistanceTo(pointRoute) < 3;
-
How to active plugin from plugin?
The code in the plugin, but don't work, just repeat 123 if (wManager.wManagerSetting.CurrentSetting.PluginsSettings.Any(p => !p.Actif && string.Equals(p.FileName, "file name.cs")) && _isLaunched && Products.IsStarted && Conditions.InGameAndConnectedAndProductStartedNotInPause && (Usefuls.ContinentId == (int)ContinentId.Northrend || Usefuls.ContinentId == (int)ContinentId.Expansion01 || Usefuls.ContinentId == (int)ContinentId.Kalimdor || Usefuls.ContinentId == (int)ContinentId.Azeroth)) { foreach (var p in wManager.wManagerSetting.CurrentSetting.PluginsSettings) { Logging.Write("123"); Thread.Sleep(1000); if (p.FileName == "SmoothMove.dll") p.Actif = true; } wManager.Plugin.PluginsManager.LoadAllPlugins(); }
-
How to hide after restart bot?
well, because earlier as it was hidden..............(when wrobot was a 1st version)
-
How to hide after restart bot?
-
Why wrobot restart sometimes!?
Again.... it is so often...
-
Why wrobot restart sometimes!?
again down omg. No one have the problem?
-
Why wrobot restart sometimes!?
again (1 min ago from post the msg) restart all session on 4 computers!
-
Why wrobot restart sometimes!?
one session I had turned off because of the edit but it closes together with all
-
Why wrobot restart sometimes!?
Why wrobot restart sometimes!? All (60 session) practically at the same time restart! 19 ноя 2018 21H11.log.html
-
How to hide after restart bot?
I changed the time 5 to 60 to 30, don't help, previously, this window did not appear at all or was immediately minimized
-
How to hide after restart bot?
-
How to hide after restart bot?
- Check if plugin active
-
Check if plugin active
How to check for quester profile "is complete condition" if plugin is active?
-
Northdale Bans - Detection?
I saw it still 5-6 mouth ago
-
How to stop event?
I need only the event: robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) =>. I use the plugin for running in ghost.
-
How to stop event?
How to stop the event, event start again and again even the char running. using System; using System.Threading; using robotManager.Helpful; using robotManager.Products; using wManager.Plugin; using wManager.Wow.Helpers; using System.Collections.Generic; using System.Linq; using robotManager.FiniteStateMachine; using wManager; using wManager.Wow.Bot.States; using wManager.Wow.Enums; using wManager.Wow.ObjectManager; using robotManager; using MemoryRobot; using Memory = wManager.Wow.Memory; using Timer = robotManager.Helpful.Timer; using Math = robotManager.Helpful.Math; using System.Windows.Forms; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { _isLaunched = true; back: Thread.Sleep(5000); Logging.Write("begin"); if (!MovementManager.InMovement) { robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { Logging.Write("event still work"); robotManager.Products.Products.InPause = true; Thread.Sleep(1000); robotManager.Products.Products.InPause = false; }; goto back; } } public void Dispose() { } public void Settings() { } }