Jump to content

Droidz

Administrators
  • Posts

    12427
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    Droidz got a reaction from lucksfx in Add condition bug and solution   
    Hello, I tested, condition is converted correctly in c# :
    ObjectManager.Target.BuffTimeLeft("Lacerate") <= 10 In "Buff name" try to put spell id.
  2. Like
    Droidz got a reaction from lsabakal in Fightback dont work   
    After "MovementManager.Go" you should wait (movementmanager works in another thread). You can use code like that :
    while (MovementManager.InMovement && Conditions.InGameAndConnectedAndProductStartedNotInPause) { Thread.Sleep(100); }  
  3. Thanks
    Droidz got a reaction from wow20230625 in How to stop fighting threads In Quest mode   
    Hello, https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=13088&_rid=1
     
  4. Thanks
    Droidz got a reaction from bio33 in relogger 5.4.8 does not enter login and password   
    Changed Status to Fixed
    Changed Version to All
  5. Like
    Droidz got a reaction from bio33 in WoW 9.2.7 relogger, error in game window on start with relogger   
    Changed Status to Fixed
  6. Thanks
    Droidz reacted to Matenia in Others.Random is bugged   
    For now, I can't reproduce it anymore (5 minutes ago, It was possible - idk!).
    If I can reproduce it again, I will put the values of Ticks checked and unchecked here.
  7. Like
    Droidz got a reaction from Nax in Bag.GetBagItem() | InBag   
    Hello, wait next update for the fix.
    By default, the bot and users use "ItemsManager.HasItemById(1234)" to check if the character has item.
  8. Like
    Droidz got a reaction from cometttor in Bugs / better movement in Battlegrounds   
    Hello,
    I will try to improve this during the week.
  9. Like
    Droidz got a reaction from 3n0x in Stuck on "Server connection..."   
  10. Sad
    Droidz got a reaction from M4k5P0w3r in problem with connecting to the server   
    Hello,
    I can't do anything. I am waiting for the intervention of the technical team of my host to find out more.
  11. Thanks
    Droidz got a reaction from lacomtesse in problem with connecting to the server   
    Hello,
    I can't do anything. I am waiting for the intervention of the technical team of my host to find out more.
  12. Like
    Droidz got a reaction from bio33 in problem with connecting to the server   
    Problem should be sovled
  13. Thanks
    Droidz got a reaction from wrobotu in problem with connecting to the server   
    Problem should solved (on all versions).
    If you have an issue (authentication or pathfinder) let us know here.
    Sorry for the inconvenience.
  14. Like
    Droidz got a reaction from eggwithbeard in problem with connecting to the server   
    I'm working on it. I rented a new server to save time.
    I'm installing (old one had failed motherboard and both hard drives, reason I was given: "The disjunction is due to a water leak on one of our network equipment" ).
    It takes time, I start from scratch (reconfiguration, send data…).
    The version for WOTLK should be available in the next few hours.
    Sorry for the inconvenience
  15. Thanks
    Droidz reacted to MrCeeJ in problem with connecting to the server   
    Thanks for the update, good luck getting the new server built! Lets hope the new place has a better plumbing🙂
  16. Thanks
    Droidz reacted to Uccy in problem with connecting to the server   
    This week I lost my production server due to a severe power cut and the 2 power supplies didn't like it and had to go back to a PRA. Good luck And thank you in advance
  17. Like
    Droidz got a reaction from wrobotu in problem with connecting to the server   
    I'm working on it. I rented a new server to save time.
    I'm installing (old one had failed motherboard and both hard drives, reason I was given: "The disjunction is due to a water leak on one of our network equipment" ).
    It takes time, I start from scratch (reconfiguration, send data…).
    The version for WOTLK should be available in the next few hours.
    Sorry for the inconvenience
  18. Like
    Droidz got a reaction from Talamin in problem with connecting to the server   
    I'm working on it. I rented a new server to save time.
    I'm installing (old one had failed motherboard and both hard drives, reason I was given: "The disjunction is due to a water leak on one of our network equipment" ).
    It takes time, I start from scratch (reconfiguration, send data…).
    The version for WOTLK should be available in the next few hours.
    Sorry for the inconvenience
  19. Like
    Droidz got a reaction from eggwithbeard in problem with connecting to the server   
    Hello,
    An incident has occurred on the authentication server (probably hardware).
    I can't do anything at the moment, the hoster team is working on it.
    I don't know for how long there is.
  20. Like
    Droidz got a reaction from venom3140 in problem with connecting to the server   
    Hello,
    An incident has occurred on the authentication server (probably hardware).
    I can't do anything at the moment, the hoster team is working on it.
    I don't know for how long there is.
  21. Like
    Droidz got a reaction from Dreamful in Change WoWHead Database   
    Hello, wait next updaet
  22. Like
    Droidz got a reaction from Hashira in Regeneration state events   
    No, it is manual, it is current usage:

    If you need event in other methods tell me I will add them
  23. Like
    Droidz got a reaction from Hashira in Regeneration state events   
    And FiniteStateMachineEvents.OnRunningLoopState is called from:
     
  24. Like
    Droidz got a reaction from Zer0 in Regeneration state events   
    Hello,
    Start > robotManager.Events.FiniteStateMachineEvents.OnRunState
    Loop > robotManager.Events.FiniteStateMachineEvents.OnRunningLoopState (you need to wait next update)
    End > robotManager.Events.FiniteStateMachineEvents.OnAfterRunState
    robotManager.Events.FiniteStateMachineEvents.OnRunningLoopState += (state, cancel) => { if (state.DisplayName == "Regeneration") { // ... } }; // OR robotManager.Events.FiniteStateMachineEvents.OnRunningLoopState += (state, cancel) => { if (state is wManager.Wow.Bot.States.Regeneration) { // ... } }; // I also add OnCustomEvent, you can create your own event like that robotManager.Events.Events.CustomEventCancelable("Event Name", new object[] { "arg1", "arg2" }); robotManager.Events.Events.OnCustomEvent += (name, args, cancelable) => { if (name == "ItemsManager.UseItem") { var itemName = (string)args[0]; } else if (name == "SpellManager.CastSpellByNameLUA") { var spellName = (string)args[0]; } // ... };  
  25. Like
    Droidz got a reaction from Hashira in Regeneration state events   
    I edited previous code
×
×
  • Create New...