79135 4 Posted March 8, 2019 Share Posted March 8, 2019 What does this feature do?* Party.GetPartyGUIDHomeAndInstance() Link to comment https://wrobot.eu/forums/topic/10939-what-is-the-difference-of-these-functions/ Share on other sites More sharing options...
Droidz 2738 Posted March 10, 2019 Share Posted March 10, 2019 Hello, you get home and instance members (arg "groupType" https://wow.gamepedia.com/API_GetNumGroupMembers ) (you get result even if one of the two is empty) Link to comment https://wrobot.eu/forums/topic/10939-what-is-the-difference-of-these-functions/#findComment-52086 Share on other sites More sharing options...
79135 4 Posted March 11, 2019 Author Share Posted March 11, 2019 19 hours ago, Droidz said: Hello, you get home and instance members (arg "groupType" https://wow.gamepedia.com/API_GetNumGroupMembers ) (you get result even if one of the two is empty) How to get information about where the location of party members if they are in different location? Party.GetParty().Where(o => o.Location == "A")? Link to comment https://wrobot.eu/forums/topic/10939-what-is-the-difference-of-these-functions/#findComment-52100 Share on other sites More sharing options...
Droidz 2738 Posted March 11, 2019 Share Posted March 11, 2019 var playerObjsNear = Party.GetPartyHomeAndInstance().Where(o => o.Position.DistanceTo(new Vector3(1, 2, 3)) < 5); 79135 1 Link to comment https://wrobot.eu/forums/topic/10939-what-is-the-difference-of-these-functions/#findComment-52112 Share on other sites More sharing options...
79135 4 Posted March 11, 2019 Author Share Posted March 11, 2019 1 hour ago, Droidz said: var playerObjsNear = Party.GetPartyHomeAndInstance().Where(o => o.Position.DistanceTo(new Vector3(1, 2, 3)) < 5); Oh sure, i can use coordinate... Thanks! Link to comment https://wrobot.eu/forums/topic/10939-what-is-the-difference-of-these-functions/#findComment-52122 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