This is just an odd statement:

Code:

if(player==null)
{
wait(1);
continue;
}
else
{
// do stuff...
}
wait(1);




why not this instead:

Code:

if(player)
{
// do stuff...
}
wait(1);




xXxGuitar511
- Programmer