It seems C2 doesn't recognize zeropad(). Has it not been added yet? Is there a way to simulate zeropad() with just events?
Develop games in your browser. Powerful, performant & highly capable.
This will work just like zeropad(n,8):
left("00000000", 8-len(str(n))) & n
Oh cool. Thanks man!