Jump to content

Droidz

Administrators
  • Posts

    12582
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, To interact with current target of party leader use csharp code: if (wManager.Wow.Helpers.Party.IsInGroup()) { wManager.Wow.Helpers.Interact.InteractGameObject(new wManager.Wow.ObjectManager.WoWPlayer(wManager.Wow.ObjectManager.ObjectManager.GetObjectByGuid(wManager.Wow.Helpers.Party.GetPartyLeaderGUIDHomeAndInstance()).GetBaseAddress).TargetObject.GetBaseAddress); } To interact with nearest npc: if (wManager.Wow.Helpers.Party.IsInGroup()) { wManager.Wow.Helpers.Interact.InteractGameObject(wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWUnit(wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWUnit()).GetBaseAddress); }
  2. If you can wait next update and tell me if problem is resolved.
  3. To add/edit commands, in "Plugins" tab, select "Party chat command.cs" and click on button "Settings for selected plugin" and:
  4. Hello, when your character don't know flightmaster (green exclamation), wrobot don't try to discover flightmaster?
  5. Hello, can you share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  6. Hello, http://wrobot.eu/files/file/650-party-chat-command/
  7. Version 1.2.0

    557 downloads

    Party chat command This plugin execute command (Lua code, c# code, use item or cast spell) when any party member send specific message in wow chat party channel. Default commands (chat message > action): How to use:
  8. Hello, user can click on "Follow this": He has also this old system: http://wrobot.eu/forums/topic/15-how-to-make-an-link-used-by-packages-manager/ (but I don't recommand to use it, I ignore if I'll remove or not this).
  9. Look this (this sample is for human warrior in start zone): TrainingSpell.xml
  10. Can you try again (please redownload Auto Accept BG.cs)
  11. To add vendor with C# you can use this code: var npcVendor = new wManager.Wow.Class.Npc { ContinentId = (wManager.Wow.Enums.ContinentId)wManager.Wow.Helpers.Usefuls.ContinentId, Entry = 1234, Faction = wManager.Wow.Class.Npc.FactionType.Neutral, Name = "Npc name", Position = new robotManager.Helpful.Vector3(1, 2, 3), CanFlyTo = true, Type = wManager.Wow.Class.Npc.NpcType.Repair, // wManager.Wow.Class.Npc.NpcType.Vendor }; wManager.Wow.Helpers.NpcDB.AddNpc(npcVendor, false); (WRobot go to nearest npc) You can also clear npcdb to force to select your npc: wManager.Wow.Helpers.NpcDB.ListNpc.Clear(); (but it is not recommended) You can also sell manually with code like: if (wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWith(Npc npc, bool skipIfCannotMakePath = false, BooleanDelegate conditionExit = null, bool acceptNpcDead = false)) { wManager.Wow.Helpers.Vendor.SellItems(List<String> itemSell, List<string> itemNoSell, List<Enums.WoWItemQuality> itemQuality); }
  12. Hello if you can share here wowhead link of drink items where you get problem.
  13. Hello, you can use: wManager.Wow.Bot.States.ToTown.ForceToTown = true; (I use it tab "Tools" button "Go to town") To be sure that character selling items, you can activate sell settings like this: wManager.wManagerSetting.CurrentSetting.Selling = true; wManager.wManagerSetting.CurrentSetting.SellGray = true; wManager.wManagerSetting.CurrentSetting.ForceSellList.Add("Item name at force to sell");
  14. I have posted it here http://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/501225-wrobot-wod-all-one-leveling-gathering-archaeo-free-rotation-bot-5.html#post3407686
  15. Use "...HaveBuff(this.FrostFever.Ids)" (not ".Id")
  16. Hello, I keep note of your suggestion. I come back here when revival is improved (I'll do my best, but it's not easy to find the best revival position).
  17. Hello, thank you. I comeback here when is done.
  18. Bonjour, j'ai noté le problème, je reviendrais sur ce sujet quand ce sera corriger. Pour le moment essaye d'éviter ce type de zone.
  19. Droidz

    Go to inn button

    Go to nearest vendor (Go to town) is an task of the bot used on all products. Go to inn task don't exist in WRobot (making it difficult to integrated). But, you can make profile with the position of inn to go quickly to inn
  20. when you click on red cross message is deleted? If yes, can you give me button name please.
  21. Hello, do you run wow in "Window mode" (not full screen) (and never minimize wow when wrobot running)?
  22. Hello, look this post: http://wrobot.eu/forums/topic/2301-garrison-starting-work-orders/#comment-10704
  23. Droidz

    Stop bot at #

    Hello, you can edit this plugin: http://wrobot.eu/files/file/512-loot-statistics/ , to stop product, use this C# code: Products.ProductStop();
  24. Can you share your log file please (just after than WRobot are pause).
  25. Droidz

    Go to inn button

    Hello, thank you for the suggestion, but I'll not add it.
×
×
  • Create New...