Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2018
1,327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. ShowBlockingWaitDialog("Nominating...","");
  2. var Nominations = [
  3. 379430,
  4. 438100,
  5. 351940,
  6. 32942828,
  7. 542050,
  8. 717690,
  9. 323190,
  10. 244850
  11. ];
  12.  
  13. Nominations.forEach(function(Element,Index){
  14. setTimeout(NominationPost,Index*500,Element,Index+1);
  15. });
  16. setTimeout(function(){
  17. document.location.href = "//store.steampowered.com/SteamAwardNominations/";
  18. },(Nominations.length+3)*500);
  19.  
  20. function NominationPost(AppId,CategoryId) {
  21. $J.post('//store.steampowered.com/steamawards/nominategame',{
  22. sessionid: g_sessionID,
  23. nominatedid: AppId,
  24. categoryid: CategoryId,
  25. source: 3,
  26. });
  27. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement