View Single Post
  #7  
Old 06-30-2011, 07:23 PM
Linkishback Linkishback is offline
Banned
Linkishback's Avatar
Join Date: Jan 2005
Location: The Netherlands
Posts: 34
Linkishback is on a distinguished road
Send a message via AIM to Linkishback Send a message via MSN to Linkishback
And I call it like this:

WEAPON: -System/Main
NPC Code:

//#CLIENTSIDE

function onPlayerEnters() {
player.join("player-drawing");
}

function onPlayerchats() {
tokens = player.chat.tokenize();
switch (tokens[0]) {
case "showclasses":
player.chat = "Joined classes:" SPC player.joinedclasses;
break;
case "rect":
player.showRect(10,10,100,100);
break;
}
}

Reply With Quote