View Single Post
  #2  
Old 11-28-2001, 09:49 AM
nyghtGT nyghtGT is offline
Banned
nyghtGT's Avatar
Join Date: Jun 2001
Posts: 3,993
nyghtGT is on a distinguished road
Send a message via AIM to nyghtGT
here i'l explain:
NPC Code:

NPC Code:

// NPC made by Zorg
if (playerchats) {
if (startswith(addperson,#c)) {
tokenize #c;
setcharprop #c,Person Added!;
// #t(3) represents the guild name
// #t(1) represents the player(s) account name
// #t(2) represents the desired nickname
addguildmember #t(3),#t(1),#t(2);
sleep 1;
setcharprop #c,;
}
if (startswith(delperson,#c)) {
tokenize #c;
setcharprop #c,Bartender Removed!;
// #t(1) represents the player(s) account name
// #t(2) represents the desired nickname
removeguildmember #t(2),#t(1);
sleep 1;
setcharprop #c,;
}
}
}




so if i say 'addperson "nyghtGT" "Nyght GT" "LAT Admin"' it will make me the nickname Nyght GT (LAT Admin) .
Reply With Quote