The Dink Network

Reply to Re: How can i make people talk in background??

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:
 
 
August 18th 2008, 01:36 PM
dinkdead.gif
Your loops probably don't work because there's no wait() in them, without a pause the loop keeps going round and there's no time for the engine to do anything else, so it freezes.

This works:
loop:
wait(anytime);
say("baa", 1);
goto loop;

So does this:
loop:
say_stop("baa", 1);
goto loop;

This will crash/freeze/destroy:
loop:
say("baaaaa!!", 1);
goto loop;