Everything posted by Droidz
-
Command to party By Party Chat
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); }
-
3.3.5a AutomaticFlightMaster usage skipping if fails once
If you can wait next update and tell me if problem is resolved.
- Command to party By Party Chat
-
3.3.5a AutomaticFlightMaster usage skipping if fails once
Hello, when your character don't know flightmaster (green exclamation), wrobot don't try to discover flightmaster?
-
Spell As Food
Hello, can you share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
- Command to party By Party Chat
-
Party chat command
- 562 downloads
- Version 1.2.0
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 comments
- 1 review
-
Profile version and new version notify system implementation
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).
-
3.3.5a While using Quester Bot skips over without finishing RunCode step if got into fight
-
BG join
Can you try again (please redownload Auto Accept BG.cs)
-
Pulse to sell items
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); }
-
Bot is drinking twice or more
Hello if you can share here wowhead link of drink items where you get problem.
-
Pulse to sell items
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");
-
(ENDED) GIVING AWAY 1X 1MONTH WROBOT SUBSCRIPTION
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
-
A few questions about the CustomClass
Use "...HaveBuff(this.FrostFever.Ids)" (not ".Id")
-
Revival needs improvements
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).
-
Attacked before attacking bug
Hello, thank you. I comeback here when is done.
-
Situation de blocage Pet Battle
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.
-
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
-
(possibly bug) Auctioner not deleting Sale Pending messages from mailbox
when you click on red cross message is deleted? If yes, can you give me button name please.
- Remote "Screen" Backwards - Any Suggestions
-
Garrison (Farm mines/herbs)
Hello, look this post: http://wrobot.eu/forums/topic/2301-garrison-starting-work-orders/#comment-10704
- 15 comments
- 3 reviews
-
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();
-
Gather ore
Can you share your log file please (just after than WRobot are pause).
-
Go to inn button
Hello, thank you for the suggestion, but I'll not add it.