Jump to content

Droidz

Administrators
  • Posts

    12452
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, look https://wrobot.eu/forums/topic/3633-getting-started-with-wrobot-video/
  2. Hello, You use recent bot version? Some olds versions can be detected. It mainly depends on your server and if GMs are active (it is also possible that they are monitoring your IP)
  3. Hello, WRobot works only on private servers, he doesn't support current Blizzard versions
  4. Hello, If you use custom profile (or quester) you can use C# do to that, but you need some knowledge of wrobot API and C #.
  5. Hello, check if you use good license key. Can you check also bot log (in folder "Logs") maybe error is in these.
  6. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  7. https://wrobot.eu/bugtracker/tbc-not-runing-r1434/
  8. Droidz

    tbc not runing

    Hello, WRobot works only on private servers, he doesn't support Blizzard servers (64 bit version don't exist on old TBC version)
  9. I just put PayPal on this site again.
  10. Hello, in "dev tools" check player buff (invisible passive buffs can have the same name)
  11. Hello, ... I will try this platform to see how it goes. if I am satisfied I would integrate myself into the site.
  12. Log files are in folder "Logs" (or tab "Log" you have button to copy log of current session to desktop)
  13. No you don't need to enable this option. But you need to start bot where (position/rotation) you want fishing. If your problem is not resolved share log of the bugged session (folder "Logs")
  14. Hello, you use "Fish School" option with custom profile? your does profile walk well at the water's edge?
  15. Hello, can you share log of session where you get this problem please
  16. Hello, I am sorry no alternative payment option for the moment. Some service like "Skrill" gives the possibility to create virtual credit cards.
  17. Hi, autostart is read only: public bool AutoStart => !string.IsNullOrEmpty(Product) && !string.IsNullOrEmpty(LicenseKey) && ProcessId > 0; Try use arg LicenseKey (seems missing in your code)
  18. Droidz

    Achat par CB

    Bonjour, Je peux comprendre, mais cette décision vient de PayPal, car le type de logiciel qu'est WRobot ne correspondait plus à leurs règles. Certains services comme Skrill par exemple propose de créer de carte bancaire virtuelle, ça peut être une solution si vous ne voulez pas donner votre CB.
  19. Hello, use https://wrobot.eu/byme/doc/html/M-wManager.Wow.Helpers.PathFinder.GetZPosition.htm
  20. Try to use this https://wrobot.eu/files/file/276-seus-journey-to-the-center-of-the-earth-pandaria-archaeology-100-complete/
  21. Bonjour, Ajouter les noms (un par ligne, avec le majuscules/minuscules ) des minerais que vous voulez ramasser dans "Advanced settings" onglet "Looting and Farming options" > "Harvest objects...."
  22. Hello, in next update I'll avoid that WRobot throws exception for that, this should resolve your problem.
  23. Maybe I do error with enabled https://wowpedia.fandom.com/wiki/API_GetItemCooldown, seems return true when item is ready, try: robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { int itemId = 1234; int questId = 1234; if (!wManager.Wow.Helpers.Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) return; if (wManager.Wow.Helpers.Conditions.IsAttackedAndCannotIgnore) return; if (state.DisplayName == "Quester") { if (wManager.Wow.Helpers.Quest.HasQuest(questId) && !wManager.Wow.Helpers.Lua.LuaDoString<bool>("local start, duration, enable = GetItemCooldown("+ itemId + "); return enable;")) { cancelable.Cancel = true; } } }; or robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { int itemId = 1234; int questId = 1234; if (!wManager.Wow.Helpers.Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) return; if (wManager.Wow.Helpers.Conditions.IsAttackedAndCannotIgnore) return; if (state.DisplayName == "Quester") { if (wManager.Wow.Helpers.Quest.HasQuest(questId) && wManager.Wow.Helpers.Lua.LuaDoString<bool>("local start, duration, enable = GetItemCooldown("+ itemId + "); return start ~= nil and start > 0 and duration ~= nil and duration > 0;")) { cancelable.Cancel = true; } } };
×
×
  • Create New...