View Single Post
  #15  
Old 07-18-2012, 06:34 AM
Hezzy002 Hezzy002 is offline
Registered User
Join Date: Jul 2011
Posts: 247
Hezzy002 is a jewel in the roughHezzy002 is a jewel in the rough
Quote:
Originally Posted by Tigairius View Post
Cool. Seems like it might be easier to just do something like:

PHP Code:
//#CLIENTSIDE
function onPlayerChats() {
  
player.chat == "stealth" onTimeout() : (player.chat == "nostealth" setTimer(0) : NULL);
}

function 
onTimeout() {
  
hideplayer(0.1);
  
setTimer(0.1);

You can say "stealth" or "nostealth" to toggle it.
Dude, that inline conditional is the ugliest thing I've ever seen in my life.

Last edited by Tigairius; 07-22-2012 at 07:18 PM.. Reason: Inappropriate
Reply With Quote