Thread: Death Clock
View Single Post
  #3  
Old 06-10-2007, 05:47 AM
Twinny Twinny is offline
My empire of dirt
Twinny's Avatar
Join Date: Mar 2006
Location: Australia
Posts: 2,422
Twinny is just really niceTwinny is just really nice
Send a message via AIM to Twinny
With GUI's, if you are setting multiple values as true, just do
PHP Code:
canresize=canclose=canminimize=false;
canmaximize=canmove=true
To save lines. Doing this will drastically reduce the size of your current script.

Also, instead of doing
PHP Code:
if (condition)
  
statement;
if (
condition)
  
statement;
if (
condition)
  
statement
You should get into the habit of using
PHP Code:
if (condition)
  
statement
else if (condition)
  
statement
else
  
statement 
Reply With Quote