The Dink Network

Reply to Re: could use some help with my 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 7th 2010, 08:30 AM
custom_iplaydink.gif
iplaydink
Peasant He/Him Sweden
Hmm.. 
To busy to read right now but I wouldn't put a comment line between the condition of an "if" and the opening {, it could crash things.

Like you've done at many locations.
example:
if(&myflag == 0)
// look if fence is closed If closed:
{
//rest of the code
}

should be
either
// look if fence is closed If closed:
if(&myflag == 0)
{
//rest of the code
}

or
if(&myflag == 0)
{
// look if fence is closed If closed:
//rest of the code
}