Jump to content

Droidz

Administrators
  • Posts

    12519
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, with product "Schedule" (or quester)
  2. Try to download another client
  3. Droidz

    Selling item

    Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  4. Droidz

    Wrbot quête

    Essayez d'avancer (de passer la zone ou WRobot coince) manuellement puis essayez de relancer WRobot, il trouvera peut êtres le chemin
  5. https://wrobot.eu/forums/topic/7750-hearth-and-logout/
  6. Hello, Do you have try to reinstall WRobot?
  7. Droidz

    DisposeCustomClass(); Bug?

    Hello, do you call "DisposeCustomClass();" from several threads? if yes try to use lock https://docs.microsoft.com/fr-fr/dotnet/csharp/language-reference/keywords/lock-statement
  8. Hello, run this lua code and check if you have "SPELLCAST_STOP" in wow chat: local frame = CreateFrame('Frame') frame:RegisterAllEvents() frame:SetScript('OnEvent', function() DEFAULT_CHAT_FRAME:AddMessage(tostring(event)) end ) This seem to be in wow bug: http://forum.nostalrius.org/viewtopic.php?t=12765&f=38
  9. Droidz

    Wrong Lua events

    Hello, i cannot reproduce problem, to test if it is not wow or server bug, try to run this code: local f = CreateFrame('Frame') f:RegisterAllEvents() f:SetScript('OnEvent', function() if event and tostring(event) == 'PLAYER_DEAD' then DEFAULT_CHAT_FRAME:AddMessage("DEADDDDD") end end ) And check if when WRobot detect "PLAYER_DEAD" event, this event appear also in Wow.
  10. Droidz

    Wrbot quête

    Bonjour essayé de signaler le problème au créateur du profil, et rejoindre manuellement la zone (ou WRobot n'arrive pas a aller seul)
  11. Do you have try with lua code?
  12. Hello, It is hard. Why do you want script your own system? Lua is the best way
  13. Hello, you get this problem only in this zone?
  14. Hello, change search radius before this quest
  15. Hello,
  16. Droidz

    Cataclysm quester

    Hello, for some quests you need to use custom "is complete condition"
  17. Hello, your project seem good, I added subscription a your account ( https://wrobot.eu/clients/purchases/ )
  18. Hello, you have forget to change fight range (top-left in fightclass editor)
  19. Hello, this type of subscription no longer exists.
  20. You use a very old version, I cannot help you, update WRobot and check if problem appear again.
  21. Bonjour, déplacez le fichier dll dans le dossier fightclass il sera visible dans lors dans la selection
  22. Hello, I am not sure to understand what you want but: robotManager.Events.FiniteStateMachineEvents.OnRunState += delegate(robotManager.FiniteStateMachine.Engine engine, robotManager.FiniteStateMachine.State state, System.ComponentModel.CancelEventArgs cancelable) { if (state is wManager.Wow.Bot.States.StopBotIf && state.DisplayName == "Security/Stop game") { // sample to disable tp detection: wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false; wManager.Wow.Bot.States.StopBotIf.ForcePvpMode = true; wManager.Wow.Bot.States.StopBotIf.LastPos = wManager.Wow.ObjectManager.ObjectManager.Me.Position; // how to wrobot check if your char is tp: if (wManager.Wow.Bot.States.StopBotIf.LastPos != null && wManager.Wow.Helpers.Conditions.InGameAndConnectedAndAlive && wManager.Wow.ObjectManager.ObjectManager.Me.Position.DistanceTo(wManager.Wow.Bot.States.StopBotIf.LastPos) >= 450) { // close bot... } } };
  23. Hello, you need to complete list yourselft, list is in advanced general settings.
×
×
  • Create New...