The Dink Network

Reply to Re: Conversation Scripts

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 9th 2005, 09:37 AM
fish.gif
Simeon
Peasant He/Him Netherlands
Any fool can use a computer. Many do. 
If you want Dink to say something when he enters a screen, place it in void main(void) like I did in the example script. If you want to make him say it regardless of the value of the &story variable, just remove the if-statement. Or, if you want Dink to say something every x seconds, do:

void main(void)
{
mainloop:
say("Hey, I say this every 5 seconds", 1);
wait(5000);
goto mainloop;
}

Now it loops every 5000 milliseconds which is 5 seconds.. you can change that of course if you want a different timing.