Reply to New Sprite - Errors
If you don't have an account, just leave the password field blank.
I've got this sprite, it's touchable, when you touch it, a new sprite is created in it's place and it's made invisible. However, for a split second, the sprite appears in the wrong place. Towards the bottom right of the screen. Here is the touch procedure, does anyone know what's wrong?
void touch( void ) { sp_touch_damage(¤t_sprite, 0); freeze(1); &climb = create_sprite(445, 135, 7, 38, 1); sp_nodraw(1, 1); sp_seq(&climb, 38); }