-
Posts
12586 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Hello, It's more for network latency than the delay to interact with the game. In the bot, before/after action, I generally use code like "Sleep(Usefuls.Latency + XXms)". Actual code used to get "Latency" : /// <summary> /// Gets the latency (between <see cref="wManagerSetting.LatencyMax"/> and <see cref="wManagerSetting.LatencyMin"/>, to get real latency use <see cref="LatencyReal"/>). /// </summary> /// <value>The latency.</value> public static int Latency { get { lock (_lockLatency) { try { var real = LatencyReal; if (real > wManagerSetting.CurrentSetting.LatencyMax) real = wManagerSetting.CurrentSetting.LatencyMax; if (real < wManagerSetting.CurrentSetting.LatencyMin) real = wManagerSetting.CurrentSetting.LatencyMin; return real; } catch (Exception e) { Logging.WriteError("Latency: " + e); return 0; } } } } private static readonly Object _lockLatencyReal = new Object(); /// <summary> /// Gets the real latency (home+world)). /// </summary> /// <value>The real latency.</value> public static int LatencyReal { get { lock (_lockLatencyReal) { try { if (!_timerLatency.IsReady || !Conditions.InGameAndConnectedAndAlive) return _lastLatency; _timerLatency = new Timer(30 * 1000); var result = Lua.LuaDoString<int>("local _, _, lag = GetNetStats(); return lag;"); if (result > 0) _lastLatency = result; return _lastLatency; } catch (Exception e) { Logging.WriteError("LatencyReal: " + e); return 0; } } } }
-
Hello, use wManager.wManagerSetting.CurrentSetting.MailRecipient = "Name";
-
Sorry, "CanCondition" is called only when bot run "PickUp" step. Use IsCompleteCondition
-
I don't found any information in your log files. What about CPU/Memory usage ? Do you have without plugin and with another fightclass/profile ?
-
https://wrobot.eu/forums/topic/14612-server-seems-to-be-down-you-may/#comment-66404
-
The problem seems on your side. Can you share your log file please (you can find log files in folder "Logs")
-
[BUG] [PARTY] Bot d'ont regen if "ressurect when dead" is disabled
Droidz replied to Evaexe's topic in Party assistance
try with this code using System; using robotManager.Events; using robotManager.FiniteStateMachine; using robotManager.Helpful; using wManager.Plugin; using wManager.Wow.Bot.States; public class Main : IPlugin { private bool _stateAdded; public void Initialize() { FiniteStateMachineEvents.OnStartEngine += StateAddEventHandler; FiniteStateMachineEvents.OnAfterRunState += AfterStateAddEventHandler; } private void AfterStateAddEventHandler(Engine engine, State state) { AddState(engine); } private void StateAddEventHandler(Engine engine) { AddState(engine); } public void Dispose() { FiniteStateMachineEvents.OnStartEngine -= StateAddEventHandler; FiniteStateMachineEvents.OnAfterRunState -= AfterStateAddEventHandler; } public void Settings() { } private void AddState(Engine engine) { if (!_stateAdded && engine != null) { try { State resState = engine.States.Find(state => state.GetType() == typeof(IsAttacked)); engine.AddState(new Regeneration() {Priority = resState.Priority - 1}); engine.States.Sort(); _stateAdded = true; Logging.Write("Adding Regen State"); } catch (Exception e) { //Logging.WriteError("" + e); } } } } -
Hello, Do you use antivirus? If yes, try to disable it. Some fightclass/plugins can make WRobot slower.
-
Hello, You are the first to report a problem like this to me. I'm on Windows 11 and have no issues. Have you updated your drivers? Do you have the log files of one or more bot sessions with this problem?
-
Hello, If you are using an old version of the bot try to put a quest id (even fake).
-
[BUG] [PARTY] Bot d'ont regen if "ressurect when dead" is disabled
Droidz replied to Evaexe's topic in Party assistance
Hello, Party bot haven't regen feature. But you can use https://wrobot.eu/files/file/650-party-chat-command/ to make the members of the group eat/drink. -
Hello, I think the easiest way would be to create a plugin dll that uses (therefore loads) this dll (which you can place in the bin folder). Otherwise, you can load this DLL manually (with code as mentioned before) at the beginning of your profile (but you have to load it only once, otherwise you will have conflicts).
-
Hello, you can't change that (but this may change depending the type of product/profile used)
-
License Key is for an other Wrobot Program ( Legion 7.3.5 26124)
Droidz commented on tyiiou's bug report in Bug Tracker
Hello, your problem should solved. -
Hello, in your settings, bot will drink/eat only if you have less than 20% of health/mana (to 70%). But, start to disable all Wow addons, WRobot plugins and try without fightclass.
-
Hello, No sorry you can't disable logging. If you have another disk on your computer, you can try to redirect "logs" to the second disk with symbolic link.
-
Trial for Private servers
Droidz replied to xkekeqwe's topic in WRobot for Wow Wrath of the Lich King - Help and support
Maybe you can get more information about the problem in the log file. You can found log files in the folder "Logs". -
Trial for Private servers
Droidz replied to xkekeqwe's topic in WRobot for Wow Wrath of the Lich King - Help and support
Hello, Could you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ). -
Hello, try to restart your computer. If the problem is not resolved, can you share the log file, please.
-
https://wrobot.eu/bugtracker/problem-with-connecting-to-the-server-r1474/?tab=comments#comment-6662
-
Problem should resovled, I hope that he will not happen again. Message of my hoster (auto translate) : Hello, The operation is over. This operation was completed on 2022-07-19 20:09:25 CEST (UTC +02:00) Here are the details of this operation: HARD reboot Date 2022-07-19 18:12:43 CEST (UTC +02:00), Reboot HARD: Here is the detail of the intervention carried out: Freezer server. No keyboard response. Actions taken: Hardware restart of the server. Results: Boot OK. Server on 'login'. Ping OK, services started.
-
Hello, I can't do anything. I am waiting for the intervention of the technical team of my host to find out more.
-
Sometime, restart computer can resolve this type of problem.