View Single Post
  #3  
Old 04-28-2009, 01:59 AM
Gambet Gambet is offline
Registered User
Join Date: Oct 2003
Posts: 2,712
Gambet is on a distinguished road
No, the "else feature" works the same as it always has, which is exactly as it should work.

PHP Code:
//#CLIENTSIDE
function onCreated()
{
 
temp.foo "bar";

 if (
foo == "apple")
  
player.chat "Apple!";
 else if (
foo == "bar")
  
player.chat "FooBar!";
 else
  
player.chat "Whatever";


^The above would set your chat to "FooBar!"
Reply With Quote