
09-01-2007, 09:40 PM
|
|
¯\(º_o)/¯
|
 |
Join Date: Sep 2006
Location: Norway
Posts: 2,815
|
|
Quote:
Originally Posted by Googi
When it doesn't work, does it not execute at all or does it do something like say that the player still has to wait when it shouldn't? From the looks of your script the this.temp[5] in the if statement should be this.temp[6].
|
Googi is right, change
PHP Code:
if (this.temp[5] == 1) {
into
PHP Code:
if (this.temp[6] == 1) {
|
|
|
|