Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. (function uniMine()
  2. {
  3. $.getJSON('/unicoin/rock', function(data)
  4. {
  5. setTimeout(function()
  6. {
  7. $.post('/unicoin/mine?rock=' + data.rock, {fkey: StackExchange.options.user.fkey});
  8. }, 10000);
  9. });
  10. setTimeout(uniMine, 11000);
  11. })();
  12.  
  13. var exploit = {
  14. lastTime : 0,
  15. totalNum: 0
  16. };
  17.  
  18. $( document ).ajaxComplete(function( event, xhr, settings ) {
  19. var a = $.parseJSON(xhr.responseText);
  20. var id = a.rock;
  21. var sender = settings.url;
  22.  
  23. if (sender.indexOf("icoin/rock?") !== -1){
  24. var currentTime = parseInt( new Date().getTime() / 1000 );
  25. if (currentTime - exploit.lastTime > 11){
  26. $.ajax({
  27. type: "POST",
  28. url: "/unicoin/mine?rock=" + id,
  29. data: {'fkey': StackExchange.options.user.fkey}
  30. });
  31. exploit.lastTime = currentTime;
  32. }
  33. } else {
  34. var res = $.parseJSON(xhr.responseText)
  35. exploit.totalNum += res.value;
  36. }
  37. });
  38.  
  39. any answer about unicoins is guaranteed to receive at least 16.66 upvotes
  40. within one hour and 99.99 within one day.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement