Blockland Forums > Modification Help
I Bugged up my Script and I Don't Know Why.
Uristqwerty:
--- Quote ---
--- Code: ---schedule(RTD_timeBombTick(%cl, %tick + 1);
--- End code ---
--- End quote ---
Basically, there is an extra schedule( in front of a function call. There are two fixes:
Almost certainly wrong:
--- Code: ---RTD_timeBombTick(%cl, %tick + 1);
--- End code ---
Probably what you wanted:
--- Code: ---schedule([some delay, in 1000ths of a second], 0, RTD_timeBombTick, %cl, %tick + 1);
--- End code ---
Looks like half a change, which someone forgot to finish.