The Dink Network

Reply to Re: Movin' Sprite

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
August 5th 2005, 10:13 AM
custom_magicman.gif
magicman
Peasant They/Them Netherlands duck
Mmmm, pizza. 
Well... no, not really.

move_stop(1, 6, 225, 1); will move it to the right to x-coordinate 225. There's no real command for relative movement (like move 225 pixels from where I stand). You'll have to use a variable to get around this:

int &crap = sp_x(1, -1);
//1 in previous line means Dink. -1 means "retrieve value"
&crap += 225;
move_stop(1, 6, &crap, 1);