The Dink Network

Reply to Re: Need Some Help for my First DMOD

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:
 
 
July 10th 2004, 09:01 PM
farmer.gif
credits are fairly easy to make, but there are a few tricks, depending on which kinds of credits you want to make. here's how to make credits scrolling up.

void main (void)
{
int &credit1 = say_xy("`3Thanks to illusivefing", 300, 500);
sp_kill(&credit1, 0);
move(&credit1, 8, -200, 1);

wait(500);

int &credit2 = say_xy("`3for helping me make credits!", 300, 500);
sp_kill(&credit2, 0);
move(&credit2, 8, -200, 1);
}

you'll probably want to fade down the screen or something first. play around with some of the values to get different coordinates, or even different direction scrolling credits.