no edit summary
(GuildKick makro) |
No edit summary |
||
| Line 1: | Line 1: | ||
{{wowapi}} __NOTOC__ | {{wowapi}} __NOTOC__ | ||
{{protectedapi|7.3.0|}} | |||
Removes a member of the guild. | Removes a member of the guild. | ||
GetNumGuildMembers(player); | GetNumGuildMembers(player); | ||
==Parameters== | ==Parameters== | ||
:;player : String - The name of one member of the guild | :;player | ||
:: String - The name of one member of the guild | |||
==Examples== | ==Examples== | ||
| Line 38: | Line 41: | ||
Open guild roster and sort for "Last Online" before starting the makro. | Open guild roster and sort for "Last Online" before starting the makro. | ||
/script i=99;while(i>0)do c,_,r,l,_,_,t,o,n=GetGuildRosterInfo(i);if(not n)then _,_,d,h=GetGuildRosterLastOnline(i);if(l<81 and r==6 and d>8 and t=="" and o=="")then GuildUninvite(c);end;end;i=i-1;end; | /script i=99;while(i>0)do c,_,r,l,_,_,t,o,n=GetGuildRosterInfo(i);if(not n)then _,_,d,h=GetGuildRosterLastOnline(i);if(l<81 and r==6 and d>8 and t=="" and o=="")then GuildUninvite(c);end;end;i=i-1;end; | ||
[[Category:World of Warcraft API/Protected Functions]] | |||