The Dink Network

Reply to Re: AlkTree Script

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 24th 2009, 01:21 AM
spike.gif
Do you know how random() works? It's utterly counter-intuitive. The first number is how many diffrent chances there are, the second number is the minimum value.
random(200,320);
creates the sprite somewhere between 320 and 500. If you wanted to create the apple between 200 and 320, you need to write
random(120,200);