saleh 13 Posted September 2, 2016 Share Posted September 2, 2016 hi iis there any command to open guild chest for party chat command plugin or a code to interact with object like this One 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); } i need to make charters open guild chest item number 206602 Thanks Link to comment https://wrobot.eu/forums/topic/3759-party-chat-command-to-guild-bank/ Share on other sites More sharing options...
Droidz 2738 Posted September 3, 2016 Share Posted September 3, 2016 Hello, use this c# code: if (wManager.Wow.Helpers.Party.IsInGroup()) { var o = wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWGameObject(wManager.Wow.ObjectManager.ObjectManager.GetWoWGameObjectByName("Guild Chest")); if (o.IsValid) { wManager.Wow.Helpers.Interact.InteractGameObject(o.GetBaseAddress, true); } } (replace "Guild Chest" by game object name how is appear in game (you can get object name when you put mouse over) saleh 1 Link to comment https://wrobot.eu/forums/topic/3759-party-chat-command-to-guild-bank/#findComment-17584 Share on other sites More sharing options...
Droidz 2738 Posted September 3, 2016 Share Posted September 3, 2016 Your wow clien is in english? Link to comment https://wrobot.eu/forums/topic/3759-party-chat-command-to-guild-bank/#findComment-17590 Share on other sites More sharing options...
saleh 13 Posted September 3, 2016 Author Share Posted September 3, 2016 yes it is English Link to comment https://wrobot.eu/forums/topic/3759-party-chat-command-to-guild-bank/#findComment-17591 Share on other sites More sharing options...
saleh 13 Posted September 3, 2016 Author Share Posted September 3, 2016 Sorry Droidz i must be in party It is Work ") Thanks very much Link to comment https://wrobot.eu/forums/topic/3759-party-chat-command-to-guild-bank/#findComment-17592 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now