Advertisement
Guest User

Untitled

a guest
Dec 18th, 2018
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. jQuery("#portlet_box_sbg_grades .box_title").html("Arcade");
  2. jQuery("#portlet_box_sbg_grades .box").css("text-align", "center");
  3. jQuery("body").append(`<div id="TB_overlay" style="position: fixed;">&nbsp;</div><div id="TB_window" role="dialog" aria-modal="true" aria-labelledby="TB_title" style="width: 800px; height: 540px;margin: 0 calc(50% - 400px); top: calc(50% - 290px);"><div id="TB_closeAjaxWindow" class="tb_title_bar" role="heading"><div id="TB_title" class="tb_title">PowerSchool Arcade</div><div id="TB_ajaxContent" role="main" style="width: 770px; height: 434px;">
  4. <h2>Select a game</h2>
  5. <h4>C</h4>
  6. <p onclick="runGame('https://sites.google.com/site/swfdump3/swf/Cat%20Mario.swf?attredirects=0')" style="cursor: pointer;">Cat mario</p>
  7. <h4>M</h4>
  8. <p onclick="runGame('https://sites.google.com/site/game2swf/swf1/minecraft-tower-defence.swf?attredirects=0')" style="cursor: pointer;">Minecraft TD</p>
  9. <h4>S</h4>
  10. <p onclick="runGame('https://sites.google.com/site/game2swf/swf1/stickrpg.swf?attredirects=0')" style="cursor: pointer;">Stick RPG</p>
  11. <p onclick="runGame('https://sites.google.com/site/gameup421/sporthead-futball-xd/sportsheadbasketball.swf?attredirects=0')" style="cursor: pointer;">Sports head basketball</p>
  12. <p onclick="runGame('https://sites.google.com/site/gameup421/sporthead-futball-xd/sportsheadsfootball.swf?attredirects=0')" style="cursor: pointer;">Sports head soccer</p>
  13. <h4>T</h4>
  14. <p onclick="runGame('https://sites.google.com/site/12312389ggggg1243/swf/flash-tetris.swf?attredirects=0')" style="cursor: pointer;">Tetris</p>
  15. <h4>V</h4>
  16. <p onclick="runGame('https://xtb3.weebly.com/uploads/1/2/2/5/122524529/vvvvvv.swf')" style="cursor: pointer;">VVVVVV</p>
  17. </div>
  18. `);
  19. function runGame(url) {
  20. jQuery("#TB_overlay").hide();
  21. jQuery("#TB_window").hide();
  22. jQuery("#TB_overlay").remove();
  23. jQuery("#TB_window").remove();
  24. jQuery("#portlet_box_sbg_grades .box").html(`<embed name="game" src="` + url + `" quality="high" allowscriptaccess="always" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="549" height="400">`); };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement