The Dink Network

Reply to Re: Two player Dink

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:
 
 
November 26th 2005, 08:17 AM
custom_king.png
redink1
King He/Him United States bloop
A mother ducking wizard 
As I said, it doesn't work very well at all. The key-##.c scripts work well for one-press actions, like displaying a map. They don't work (at all) for continuous-press actions, like movement keys. You could try something like this:

//d2-left.c
void main(void)
{
sp_dir(&dink2, 4);
sp_mx(&dink2, -10);
wait(500);
sp_mx(&dink2, 0);
kill_this_task();
}

But you'd find that diagonals are pretty much impossible, and it would result in some of the jerkiest ovement imagineable.