Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
No edit summary
 
No edit summary
Line 1: Line 1:
 
This function returns the Index of the specified index of the player. Thus if you used the following as an example:
 
This function returns the Index of the specified index of the player. Thus if you used the following as an example:
   
for groupindex = 1,4 do
+
for groupindex = 1,4 do
id=GetPartyMember(groupindex);
+
id=GetPartyMember(groupindex);
end
+
end
   
 
Then:
 
Then:
Line 9: Line 9:
   
 
Thus if groupindex=1 then id=1.
 
Thus if groupindex=1 then id=1.
 
 
This makes this function a noop.
 
This makes this function a noop.

Revision as of 22:37, 1 January 2005

This function returns the Index of the specified index of the player. Thus if you used the following as an example:

 for groupindex = 1,4 do
   id=GetPartyMember(groupindex);
 end

Then:

 id=groupindex

Thus if groupindex=1 then id=1. This makes this function a noop.