pilno:Ort43v/common.js

.i la'o zoi. Wikipedia .zoi krasi

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* userTricks - a user script library
 * 2012 [[User:Ort43v]]
 */
var userTricks = {
t: null,
testTitle: "",
minHour: 6,
maxHour: 22,

blackout: function(){
document.body.style.backgroundImage = 'none';
document.body.style.backgroundColor = 'black';
},

clear: function(){
document.body.style.display = 'none';
rand = Math.floor(Math.random() * 3);
if (rand > 1) {
  userTricks.timer();
}
},

timer: function(){
userTricks.t = setTimeout('userTricks.quiz()',60000);
},

show: function(){
document.body.style.display = 'block';
},

id: function(id){
return document.getElementById(id);
},

quiz: function(){
rand1 = Math.floor(Math.random() * 1000000000);
rand2 = Math.floor(Math.random() * 1000000000);
sum = rand1 + rand2;
ans = prompt(rand1 + '+' + rand2 + ':');
if (isNaN(ans)) {
  ans = '1';
}
ans = eval(ans);
if (sum == ans) {
  userTricks.show();
}
},

main: function(){
d = new Date();
h = d.getHours();

if (h < userTricks.minHour) {
  userTricks.clear();
}


// for testing
if ( mw.config.get( 'wgPageName' ) == userTricks.testTitle ) {
  userTricks.clear();
  
}
}

};

userTricks.main();