PDA

View Full Version : modify guild member's Note


think
25-01-2007, 04:30 AM
I want to use a macro or a Mod to modify guild member's Note(I have the permittion). there are so many members, It is a big trouble to modify manually。

Can anyone tell me which api funciton or mod can modify the guild note?

Wintrow
25-01-2007, 04:39 PM
GuildRosterSetPublicNote(index, "note");

changes the public note for a guild member.

use
name, rank, rankIndex, level, class, zone, note, officernote, online, status = GetGuildRosterInfo(index);

to find the index of a certain member by running index from 1 to number of guildmembers.

numGuildMembers = GetNumGuildMembers([includeOffline]);

I suggest caching the info in a more convenient table if you are going to update a lot if notes :)

think
29-01-2007, 09:44 AM
Tkanks a lot! I will try it