CRYPTPACK

CRYPTPACK 1.3

Twelve causes a Lua error to appear upon transforming for the first time:
1740951310569.png

This is because line 17 sets the Heavy Magician Box mobj's state to S_NULL, which deletes it. Line 18 then tries to access the mobj, which causes an error as it no longer exists. To fix it you could either swap the lines around or remove line 18.

Unrelated to that error, SPR_TRANS is not a valid sprite name as sprite prefixes need to be four letters long (if Ring Racers gets long sprite names from SRB2 upstream in the future, this will cause errors to appear in-game). Something like SPR_TRAN or SPR_TRNS would work fine. Doesn't seem to cause any problems yet though, as the PK3 doesn't contain any sprites that aren't for characters?
1740951521008.png
 
Back
Top