View Single Post
  #3  
Old 08-22-2009, 01:41 PM
screen_name screen_name is offline
is watching you
Join Date: Mar 2002
Location: The 3rd Dimension
Posts: 2,160
screen_name is on a distinguished road
Send a message via AIM to screen_name Send a message via MSN to screen_name
Exactly what I meant. I was thinking that you could do something like this;

PHP Code:
function onPlayerChats() {
   
temp.pc player.chat.tokenize();
   switch (
pc[0]) {
     case 
"+":
       switch (
pc[1]) {
         case 
"gold":
         break;
         case 
"item":
         break;
         case 
"health":
         break;
         default:
           
player.chat "Invalid parameter";
         break;
      }
     break;
     case 
"?":
     break;
     default:
     break;
  }

Something of the sort. I realize after typing that though, if I wanted the ? command to display help, then there would be a lot of extra typing.
__________________
[signature]insert here[/signature]
Reply With Quote