Advertisement
rdsedmundo

VIP

Aug 21st, 2011
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var vipdays = 1;
  2. function upthis() {
  3. document.getElementById('clubdaysleft').innerHTML=vipdays;
  4.     if(vipdays == 50) {
  5.         alert('you have been pwned!')
  6.     }
  7.     if (vipdays != 50){
  8.         vipdays = vipdays+1;
  9.         setTimeout("upthis()", 1000);
  10.     };
  11. };upthis();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement