View Single Post
  #2  
Old 09-07-2011, 06:13 AM
Mark Sir Link Mark Sir Link is offline
Kevin Azite
Mark Sir Link's Avatar
Join Date: Sep 2005
Posts: 1,489
Mark Sir Link is just really niceMark Sir Link is just really nice
Send a message via AIM to Mark Sir Link
try something like
PHP Code:
function onCreated(){
  
this.prefix "what chat should start with";

function 
onPlayerChats(){
  if(
player.chat.starts(this.prefix)){
    switch(
player.chat.substring(this.prefix.length())){
      case 
"test": break;
      case default : break;
    }
  }

Reply With Quote