Jump to content

Droidz

Administrators
  • Posts

    12510
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, this feature is now added (program "Relogger.exe" in WRobot folder).
  2. uint offsetFocus = 0xDA59F8; // offset wow 6.2.4.21348
  3. Hello, If you can wait next update and tell me if problem is resolved.
  4. Hello, If you can wait next update and tell me if problem is resolved.
  5. Hello, If you can wait next update and tell me if problem is resolved.
  6. Hello, If you can wait next update and tell me if problem is resolved.
  7. I have tested the two codes and this works on wotlk.
  8. Hello, I have released WRobot for WoW for 6.2.4.21336. If you play on european server, wait tomorrow to update WRobot (if you have updated WRobot, you can download old version of WRobot here). To get more informations about WRobot update click here. To get more informations about Wow 6.2.4 click here. You can reports bug here. EDIT: Works with Wow 6.2.4.21348
  9. Hello, I have released WRobot for WoW for 6.2.4.21336. If you play on european server, wait tomorrow to update WRobot (if you have updated WRobot, you can download old version of WRobot here). To get more informations about WRobot update click here. To get more informations about Wow 6.2.4 click here. You can reports bug here. EDIT: Works with Wow 6.2.4.21348 View full article
  10. Hello, I have noted this, I'll add this but not quicly. You can create several folder with just relogger (copy "Relogger.exe" and folder "Bin") to start quickly wow and wrobot from different wow.
  11. 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); }
  12. If you can wait next update and tell me if problem is resolved.
  13. To add/edit commands, in "Plugins" tab, select "Party chat command.cs" and click on button "Settings for selected plugin" and:
  14. Hello, when your character don't know flightmaster (green exclamation), wrobot don't try to discover flightmaster?
  15. Hello, can you share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  16. Hello, http://wrobot.eu/files/file/650-party-chat-command/
  17. Version 1.2.0

    544 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:
  18. 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).
  19. Look this (this sample is for human warrior in start zone): TrainingSpell.xml
  20. Can you try again (please redownload Auto Accept BG.cs)
  21. 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); }
  22. Hello if you can share here wowhead link of drink items where you get problem.
  23. 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");
  24. 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
  25. Use "...HaveBuff(this.FrostFever.Ids)" (not ".Id")
×
×
  • Create New...