Jump to content

Droidz

Administrators
  • Posts

    12455
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hi, you are sure that this happen only when WRobot is running? WRobot don't use issecure.
  2. Hello, If you use fightclass editor (xml fightclass) use spell setting "Not spell is lua script" and in spell name put code like: CastSpellByName("Hoily strike"); https://wowwiki-archive.fandom.com/wiki/API_CastSpellByName (you need to check distance, maybe timer (if you can't check if spell is usable), ... manually in conditions)
  3. Hey, look https://wrobot.eu/files/file/1738-example-random-areas-on-a-timer-for-grinding/
  4. Hey, https://wrobot.eu/byme/doc/html/AllMembers.T-wManager.wManagerSetting.htm look MaxZDistanceAttack MaxZDistanceFarm MaxZDistanceIsAttacked
  5. Hello, If you use good configuration for items to sell normally you must keep the items that you want to send (you can use a simpler configuration for items to send and you have the money to send the mail).
  6. Hello, can you test with new update (5.4.8 only), if it is ok I'll apply patch to all versions
  7. Hello, it is probably fightclass problem try https://wrobot.eu/files/file/1351-retribution-paladin-1-90/
  8. Hello, disable your wow addons and reinstall WRobot in new folder without plugin. you call the pathfinder server 30000 in 3 hours something is wrong. Check also if you profile is for your game version
  9. Hello, close vendor is in your NPC DB (tab tools) on in your profile?
  10. Hello, can you share wow client .exe file
  11. hi, try to use {RDFSettings.CurrentSetting.Tank.ToString().ToLower()} (by default boolean is converted to "True" or "False" if my memory is good)
  12. Droidz

    Avoid ground effects

    Hi, maybe with wow lua events
  13. 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.
  14. 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); };
  15. 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/ ).
  16. 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.
  17. 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.
  18. Bonjour, pouvez vous enregistrer une video et partager le fichier log de la session.
  19. 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);
  20. 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);
  21. Hello, you want do it with code or with interface?
  22. Hello, try to disable proxy and vpn (check also if you use custom windows hosts file)
  23. 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
×
×
  • Create New...