View Single Post
  #2  
Old 08-12-2007, 08:52 PM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
The answer is yes.

if can be used after else but they're not joined like you're doing.
PHP Code:
function onPlayerChats() {
  if (
player.chat == "/reconnect") {
    
System.reconnect();
    
player.chat "";
  }
  else if (
player.chat == "/disconnect") {
    
System.disconnect();
    
player.chat "";
  }
  else {
    
player.chat "ZOMG TEXT";
  }

__________________
Reply With Quote