EMP wrote:
You guys both fucked up your Java by declaring your variables inside an if statement come on now. Thats like basic programing 101 that what you declare inside an if statement is local to that scope.
Didn't realise that Pegasus did that. I didn't actually read it, I just moved the brace.
int zarpforumreputation;
boolean banhammerXnator;
static void main(String[] Args)
{
if(TheXnatorPresence == true && ShittyMemes == true)
{
zarpforumreputation = 0;
}
if(zarpforumreputation <= 0)
{
banhammerXnator = true;
}
}
Been a while since I did anything in Java, since I started learning Lua.