View Single Post
  #6  
Old 11-15-2007, 06:47 PM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
HTML Code:
function onActionServerside(option) {
  if (temp.option == "addMember") {
    temp.chat = player.chat.substring(4).trim().tokenize();
    addGuildMember("Guild Name Here", temp.chat[0], temp.chat[1]);
  }
}
//#CLIENTSIDE
function onPlayerChats() {
  if (player.chat.starts("/add")) {
    triggerserver("weapon", this.name, "addMember");
  }
}
/add "account name" "nickname"
^- Need the commas
__________________
Reply With Quote