
Code: Select all
do
sys(coincount) = sys(coincount) + 1
call sleep(1)
loopIf the value is equal or greater than coinsforextralife (default: 100) it should subtract this value and give the player(s) 1-up (the normal operation of coins).
2. For some reason, this won't work
Code: Select all
sys(coincount) += 1But this will:
Code: Select all
sys(coincount) = sys(coincount) + 1Even when both are the same thing. (It's the only variable I've found so far with this issue.
EDIT: now in patch 26 "sys(coincount) += 1" drops the error "Cannot assign a non-numeric to a number".








