Thread: Tokens?
View Single Post
  #4  
Old 02-24-2011, 04:40 AM
Seich Seich is offline
Noctorious' NeoHunter
Seich's Avatar
Join Date: Jun 2008
Location: Honduras
Posts: 193
Seich will become famous soon enough
Send a message via MSN to Seich Send a message via Yahoo to Seich
PHP Code:
function onPlayerChats() {
    if(
player.chat.starts("/color")) {
           
temp.tokens player.chat.tokenize();
           if(
tokens[1] == "red") {
               
//do something when player says "/color red"
           
} else if(tokens[1] == "blue") {
               
////do something when player says "/color blue"
           
}
    }

I haven't scripted in like a year so, I hope I got that right x]
Reply With Quote