The Dink Network

Reply to Re: sp_custom

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:
 
 
March 2nd 2008, 08:20 AM
fairy.gif
Someone
Peasant He/Him Australia
 
Debugging is no fun

You can try the easy way, in a way that Endy was the first to use somewhere, since there's plenty of room in the variables to waste states extravagantly.

store:
if (y > 200)
{
x += 1000;
y -= 200;
}

if (seq == 1)
x += 10000;

store x in ed_seq, y in ed_frame

//////

extract:
if (x > 10000)
{
x -= 10000;
seq = 1;
} else seq = 0;

if (x > 1000)
{
x -= 1000;
y += 200;
}

---

This strategy is a lot more restrictive and boring, but it'll work here and is easier to set up