Jump to content

Droidz

Administrators
  • Posts

    12581
  • Joined

  • Last visited

Everything posted by Droidz

  1. https://wrobot.eu/forums/topic/14612-server-seems-to-be-down-you-may/#comment-66404
  2. The problem seems on your side. Can you share your log file please (you can find log files in folder "Logs")
  3. 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); } } } }
  4. Hello, Do you use antivirus? If yes, try to disable it. Some fightclass/plugins can make WRobot slower.
  5. 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?
  6. Hello, If you are using an old version of the bot try to put a quest id (even fake).
  7. 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.
  8. Hello, can you give me from/to positions please
  9. 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).
  10. Hello, you can't change that (but this may change depending the type of product/profile used)
  11. Hello, your problem should solved.
  12. 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.
  13. Droidz

    log

    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.
  14. Maybe you can get more information about the problem in the log file. You can found log files in the folder "Logs".
  15. Hello, Could you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  16. Hello, try to restart your computer. If the problem is not resolved, can you share the log file, please.
  17. https://wrobot.eu/bugtracker/problem-with-connecting-to-the-server-r1474/?tab=comments#comment-6662
  18. 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.
  19. Hello, I can't do anything. I am waiting for the intervention of the technical team of my host to find out more.
  20. Sometime, restart computer can resolve this type of problem.
  21. Hello, you Windows is updated? Do you have installed all required files ?
  22. Droidz

    Bluering

    Hello, Bluering is private server ? If yes, if they use custom game client, it's probably the reason of your problem. WRobot works only with default game client.
  23. Hello, WRobot works only with default game client. If your server don't accept default game client, I haven't a solution for you, sorry.
  24. Hello, try this plugin : https://wrobot.eu/files/file/411-auto-accept-wow-popup-window/ (some wow addons do it also)
×
×
  • Create New...