View Single Post
  #3  
Old 11-29-2009, 05:11 AM
Kyranki Kyranki is offline
Freelance Coder
Join Date: Aug 2007
Location: At the end of the rainbow, in the pot of gold.
Posts: 202
Kyranki is on a distinguished road
Send a message via AIM to Kyranki Send a message via MSN to Kyranki
Erm, Chris then explain to me why it's not working at all here. o.o

PHP Code:
function onPlayerChats() {
  
temp.toks player.chat.tokenize();
  
temp.com player.chat.substring(1temp.toks[0].length());
  echo(
temp.toks);
  echo(
temp.com);
  switch (
temp.com) {
    case 
"global":
      echo(
"boo");
    break;
    
    default:
      echo(
"bark");
    break;
  }

Is resulting to the default.
__________________
Stan.
Reply With Quote