Gigabyte GTX780 Treasure Hunt

if (winner == me) {
behapppy();
}
else {
congratsto(winner);
}

function behapppy() {
if (me == onvacation() && me == cannotviewmessages()) {
ragequit();
}
}
 
Last edited:
if (winner == me) {
behapppy();
}
else {
congratsto(winner);
}

function behapppy() {
if (me == onvacation() && me == cannotviewmessages()) {
ragequit();
}
}

What language is this? I only know HTML/CSS and Flash( not by heart but more or less basics) and it's certainly none of those:p
 
Last edited:
if (winner == me) {
behapppy();
}
else {
congratsto(winner);
}

function behapppy() {
if (me == onvacation() && me == cannotviewmessages()) {
ragequit();
}
}

i think you will find that the condition me == onvacation() && me == cannotviewmessages() will never work :)

this is more likely to work: if(onvacation(me) && cannotviewmessages(me))
 
Back
Top