Jump to content

Droidz

Administrators
  • Posts

    12581
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, close vendor is in your NPC DB (tab tools) on in your profile?
  2. Hello, can you share wow client .exe file
  3. hi, try to use {RDFSettings.CurrentSetting.Tank.ToString().ToLower()} (by default boolean is converted to "True" or "False" if my memory is good)
  4. Droidz

    Avoid ground effects

    Hi, maybe with wow lua events
  5. WRobot API Documentation Website: https://wrobot.eu/byme/doc/ Offline documentation: https://wrobot.eu/byme/doc/WRobot.chm (from Wotlk version, Updated the 01 February 2021) Unofficial documentation is available here , it is still very useful because it contains examples and descriptions that are not available in the official.
  6. Hi. Don't use enum "LuaEventsId" it is obsolete, use string like that: EventsLua.AttachEventLua("LFG_PROPOSAL_SHOW", m => Lua.LuaDoString("AcceptProposal();")); You can dump all events and check event called when you get this popup, run this code one time when product is started: wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaStringWithArgs += (eventid, args) => { Logging.WriteDebug("[EVENT] " + eventid); };
  7. 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/ ).
  8. Droidz

    wrobot freezing

    I can only solve the problem if you have this problem with WRobot without plugin, profile (test several) and fightclass (test several). Otherwise you have to find the plugin / profile / fightclass that causing the problem and see with the creator, if the creator tells me that the problem comes from WRobot because it occurs when it uses X method in this case I could solve.
  9. Hello, you are sure that you don't use product option "Back to last profile position"? By default WRobot back to the nearest profile position.
  10. Bonjour, pouvez vous enregistrer une video et partager le fichier log de la session.
  11. Hello, no special log?
  12. try wManager.wManagerSetting.CurrentSetting.BuyList.RemoveAll(b => b.ItemName == "Instant Poison"); // remove existing var itemToBuy = new wManager.Wow.Class.Buy { ItemName = "Instant Poison", VendorItemClass = wManager.Wow.Class.Npc.NpcVendorItemClass.Consumable, GoToVendorIfQuantityLessOrEqual = 5, Quantity = 20, ScriptCanCondition = "return ObjectManager.Me.Level > 20;" }; wManager.wManagerSetting.CurrentSetting.BuyList.Add(itemToBuy);
  13. Try this code: var itemToBuy = new wManager.Wow.Class.Buy { ItemName = "Instant Poison", VendorItemClass = wManager.Wow.Class.Npc.NpcVendorItemClass.Consumable, GoToVendorIfQuantityLessOrEqual = 5, Quantity = 20, ScriptCanCondition = "return ObjectManager.Me.Level >20 && ObjectManager.Me.WowClass == WoWClass.Rogue;" }; wManager.wManagerSetting.CurrentSetting.BuyList.Add(itemToBuy);
  14. Hello, you want do it with code or with interface?
  15. Hello, try to disable proxy and vpn (check also if you use custom windows hosts file)
  16. Droidz

    wrobot freezing

    You are allone to report me this problem. Try in VM with new wrobot install, new wow install (redownload) to be sure. If problem is not resolved try to dump wrobot process and share file with me by private message https://m-files.force.com/s/article/Creating-a-memory-dump-from-a-specific-process-with-Task-Manager
  17. Droidz

    wrobot freezing

    Hey, if you speak about https://wrobot.eu/bugtracker/bug-ingame-error-stack-overflow-r1392/?tab=comments#comment-6332 I have already replied to you by private message and I do not find any problem in WRobot. You are the only one to report this problem I think it is a configuration / plugin / profile / fightclass problem.
  18. Hello, try to add mines to havrest to your profile or in advanced general settings to objects to harvest list
  19. Hello, try to disable also your VPN and proxy. To restart your computer. If problem is not resolved share your log files (in "Logs" folder)
  20. Wishing you a happy new year with the hope that you will have many blessings in the year to come. View full article
  21. Droidz

    Happy New Year 2021

    Wishing you a happy new year with the hope that you will have many blessings in the year to come.
×
×
  • Create New...