Skip to content

Instantly share code, notes, and snippets.

@hakusaro
Last active August 29, 2015 14:23
Show Gist options
  • Save hakusaro/1e1f27b83bb23fcc3a8c to your computer and use it in GitHub Desktop.
Save hakusaro/1e1f27b83bb23fcc3a8c to your computer and use it in GitHub Desktop.

Definitive guide to WH Strats

  1. Install Tampermonkey (Chrome) or Greasemonkey (Firefox).
  2. Install https://github.com/Pawsed/SteamMonsterAutoUpgradeManager/raw/master/upgrademanager.user.js as a user script. This is fancy. It auto-upgrades your stuff to whatever strat we're using at the time.
  3. Install https://raw.githubusercontent.com/wchill/steamSummerMinigame/master/autoPlay.user.js as a user script. There is also one floating around from SteamDB, that, at this time of writing, is kinda broken. If chat says SteamDB is not broken, feel free to use it. It has fancy auto-upgrades, so you don't need the first script if you choose it. Right now it's totally broken though.
  4. Find a room and join. You can only join games from the lobby. In Chrome, hit F12 to open the console, and type JoinGame(roomnumber);. If you get an error (400), refresh the page to see if you get a "resume game" button. If you do, click it and verify that you joined the game you want. If it didn't work, then you need to repeat the JoinGame command until it does. Some people have problems with this. Below is a fancy script that auto attempts to join a game and automatically closes the error message for you. (function(key){setInterval(function(){JoinGame(key);$J('.newmodal').remove();}, 2000)})(ROOMNUMBER)
  5. Buy wormholes. That's all. Nothing else. With remaining cash, try Treasure, Raining Gold, or something else fun. Below is a fancy script that auto-buys Wormholes. i=0; while(i++ < 1000) $J('#purchase_abilityitem_26').click() Tweak the number "1000" to anything higher when you feel like it.
  6. Check the leaderboards and be amazed.

Other things

  • To leave a game: g_Server.QuitGame(function() {location.reload()});

FAQ

  1. Is it using my abilities right? Yes. We're doing fancy 500k level jumps now. Don't worry.
  2. Should I "help" by pressing my abilities myself? No no no. Don't touch your abilities.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment