Advertisement
Game_Logic

GoogleFeud Mod Commands [FIXED]

Mar 11th, 2020 (edited)
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. document.getElementsByTagName('footer')[0].outerHTML = "<form action='' method='' id='newsletter'><input type='hidden' name='VerificationCodeX' value=''><input type='hidden' name='list[2]' value='signup'><input type='hidden' name='listname[2]' value='Google Feud Updates'><input type='hidden' name='makeconfirmed' value='0'><input type='hidden' name='htmlemail' value='1'><input type='text' size='20' value='' name='email' id='modinput' style='font-size:12pt; height: 24px; text-indent: 5px; border: 1px solid #DBDBDB'><input type='hidden' name='subscribe' value='yes'><button onclick='modz()' type='button' style='width:90px; line-height: 19pt; position: relative; bottom: 1px; cursor: pointer; font-weight: bold; font-size: 10pt; border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; border: 1px solid #DBDBDB; background-color: #F5F5F5; height: 30px;'>Submit</button><button onclick='cmds()' type='button' style='width:90px; line-height: 19pt; position: relative; bottom: 1px; cursor: pointer; font-weight: bold; font-size: 10pt; border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; border: 1px solid #DBDBDB; background-color: #F5F5F5; height: 30px;'>Commands</button></form>";
  2. function modz() {
  3. var xxxt = document.getElementById('modinput').value;
  4. if (xxxt == "/strikes") {
  5. gameData.wrong = prompt('/strikes (DO NOT ERASE PRETYPED TEXT)', '-');
  6. document.getElementById('failuresspan').innerHTML = gameData.wrong
  7. }
  8. if (xxxt == "/round") {
  9. gameData.round = prompt('/round');
  10. document.getElementById('roundnumberspan').innerHTML = gameData.round
  11. }
  12. if (xxxt == "/total_score") {
  13. gameData.totalscore = prompt('/total_score');
  14. document.getElementById('highscorespan').innerHTML = gameData.totalscore
  15. }
  16. if (xxxt == "/score") {
  17. gameData.score = prompt('/score');
  18. document.getElementById('scorespan').innerHTML = gameData.score
  19. }
  20. if (xxxt == "/set_question") {
  21. document.getElementById('queryspan').innerHTML = prompt('/set_question')
  22. }
  23. if (xxxt == "/reset_question") {
  24. document.getElementById('queryspan').innerHTML = gameData.prompt
  25. }
  26. if (xxxt == "/next_round") {
  27. newRound()
  28. }
  29. if (xxxt == "/get_answers") {
  30. confirm(gameData.googleResults)
  31. }
  32. if (xxxt == "/credits") {
  33. confirm('Hacks created by Game Logic. Dedicated to my fans. Always making new hacks 24/7! Enjoy!')
  34. }
  35. };
  36. function cmds() { confirm('/strikes | /round | /total_score | /score | /set_question | /reset_question | /next_round | /get_answers | /credits'); };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement