The Dink Network

Reply to Re: Position of text

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:
 
 
September 16th 2013, 07:16 PM
peasantm.gif
shevek
Peasant They/Them Netherlands
Never be afraid to ask, but don't demand an answer 
You can also record the sprite number of the said text and move it later:

int &spr = say ("text", &sprite);
int &y = sp_y (&spr, -1);
&y += 10;
sp_y (&spr, &y);


Note that I'm not used to writing "raw" DinkC, so my code may not work, but I hope you get the idea.