The Dink Network

Reply to Re: Code in hit proc

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:
 
 
May 13th 2009, 07:25 PM
fairy.gif
Someone
Peasant He/Him Australia
 
I don't believe there are any internal timers like that.

Don't use wait(30). Use two wait(1)s. If that is not reliable, use three. (But I think 2 will do.)

4 wait(1)s is not the same as wait(4).

This is what wait does:
Do all other tasks in the que
IF the time is up, then return, otherwise wait until it is

You should be able to see from that that wait(0) could be used instead of wait(1).. You want to use wait to allow the other tasks to be executed, not so much to "wait".

I've got stuff very similar to what you want to do in my tutorial.