View Single Post
  #18  
Old 06-10-2001, 10:08 AM
T-Squad T-Squad is offline
Banned
T-Squad's Avatar
Join Date: Mar 2001
Location: United States of America
Posts: 1,733
T-Squad is on a distinguished road
actually it does matter with else...
basicly without else, it will do everything instantly....

for istance try doing weapon fired, and making it go something like:
if (weaponfired) {
if (this.on = 1) {
this.on = 0;
}else{
if (this.on = 0) {
this.on = 1;
}
}
}

then have another going:

if (weaponfired) {
if (this.on = 1) {
this.on = 0;
}
if (this.on = 0) {
this.on = 1;
}
}

and you will see what i mean ;-)
Reply With Quote