View Single Post
  #3  
Old 01-21-2012, 01:53 AM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
Quote:
Originally Posted by Gunderak View Post
Not a bad start, this
PHP Code:
if(this.boots) { 
should probably be
PHP Code:
if(this.boots == true){ 
Probably?

If this.boots is true, his way would essentially be doing:

PHP Code:
if(true){
  
//stuff

Which is basically what if(condition){} is for.
Reply With Quote