March 19, 201610 yr Hello how can i make a spell run after Party1 say "TEXT01" in party chat this action run spell Thanks
March 20, 201610 yr Author ok , can you show me how to make a command to run /use Banner of Cooperation
March 20, 201610 yr To add/edit commands, in "Plugins" tab, select "Party chat command.cs" and click on button "Settings for selected plugin" and:
March 21, 201610 yr I think you can use the interact method in c# Quote Interact.InteractGameObject(uint, bool) // npc id, stopMove
March 21, 201610 yr 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); }
March 22, 201610 yr doens't work for me on wotlk. None of my bots in party do anything when i say any command that is configurated like "gohome", "pause"
March 22, 201610 yr 8 hours ago, betterSister said: doens't work for me on wotlk. None of my bots in party do anything when i say any command that is configurated like "gohome", "pause" I have tested the two codes and this works on wotlk.
March 22, 201610 yr Umm... my main character that yells commands won't make bots do anything but character that has the plugin on can control other bots
March 23, 201610 yr 17 hours ago, saleh said: i test the code and it work Try having bot in party and nonbot character tells commands. Doesn't work for me atleast
March 28, 201610 yr Author hello i have a qustion about this plugin how can i use /w to give slave toon command not Party chat ? Thanks
March 29, 201610 yr 10 hours ago, saleh said: hello i have a qustion about this plugin how can i use /w to give slave toon command not Party chat ? Thanks Edit "Party chat command.cs" with notepad and replace (line 35): (int)msg.Channel == 49 || msg.Channel == ChatTypeId.PARTY by msg.Channel == ChatTypeId.WHISPER
March 29, 201610 yr Author How can i make the salve toon use a portal or collect healthstone or collect food [Conjure Refreshment Table] ? Thanks
Create an account or sign in to comment