The Dink Network

Reply to Re: Yargh, bumwaffle!

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 5th 2005, 07:34 PM
goblinm.gif
int &where = (random(1, 400));
int &wheere2 = (random(1, 2));

No need for the extra parenthesese.
int &where = random(1, 400);
int &wheere2 = random(1, 2);
is correct, I imagine. You also do it later.