Skip to content

Instantly share code, notes, and snippets.

@hanh090
Created January 25, 2018 03:42
Show Gist options
  • Save hanh090/674a438fd2874d061b616841c9e55595 to your computer and use it in GitHub Desktop.
Save hanh090/674a438fd2874d061b616841c9e55595 to your computer and use it in GitHub Desktop.
function fixBUG(bugs) {
if (BOSS.support) {
if (BOSS.support == "MILKTEA") {
$.each(bugs, function (i, bug) {
wait(2000);
bug.fixed();
});
} else if (BOSS.support == "MONEY") {
$.each(bugs, function (i, bug) {
wait(100);
bug.fixed();
});
}else if (BOSS.support == "CHEERLEADER") {
$.each(bugs, function (i, bug) {
wait(1);
bug.fixed();
});
}else if (BOSS.support == "ALL_OF_THEM") {
// WTF? Never ever have a single bug in this case
bug.fixedAll();
}
} else {
bugs.push(newBug);
fixBUG(bugs);
}
}
public hasBoyfriend(Girl girl){
if(girl.body == "90-60-90"){
return 1;
}
if(girl.face LIKE "NgocTrinh" OR LIKE "MariaOzawa"){
return 0.9999;
}
if (girl.body == "90-90-90" OR girl.face LIKE "ThiNo"){
return 0;
}
if(girl.name == "T"){
throw new Exception("Less than 0 value")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment