43 ratings
2015 Steam Monster Summer Game 夭獸夏日小遊戲
By Howar31
This is a simple tip note for 2015 Steam Monster Summer Game. Only a quick note not a full tutorial or walkthrough.

這是 2015 Steam 夭獸夏日小遊戲的指令筆記,這只是一個快速筆記並不是完整的教學或說明。
   
Award
Favorite
Favorited
Unfavorite
Basic 基本
Where to use the code 指令輸入
The codes are all written in JavaScript. You have to execute the JavaScript code in your own browser:
指令都是使用 JavaScript 撰寫,你必需要在你自己的瀏覽器內執行這些 JavaScript 程式碼:

  • Google Chrome
    • Press F12
      • 按F12
    • Select "Console" tab below the Developer Tools
      • 在開發者工具視窗內選擇「Console」標籤
    • Paste or input the script code in console
      • 貼上或手動輸入程式碼
  • Firefox
    • Press F12
      • 按F12
    • Paste or input the script code in console
      • 貼上或手動輸入程式碼
Join Game 加入遊戲
Navigate to this webpage frist:
請先到小遊戲的網頁:
https://steamhost.cn/steamcommunity_com/minigame/

Join 加入
To join game, the basic Javascript code is:
加入遊戲的基本 Javascript 為:

JoinGame(_ROOMNUM_);

Replace _ROOMNUM_ as the room number.
_ROOMNUM_ 取代為房號。

Auto Join 自動加入
It's much easier to join a popular room with automatic script:
使用程式碼可以輕鬆的自動加入熱門房間:

setInterval(function() {JoinGame(_ROOMNUM_);$J('.newmodal').remove();}, 2000);

Replace _ROOMNUM_ as the room number.
_ROOMNUM_ 取代為房號。

Multi-Auto Join 多重自動加入
If you want to try multiple rooms at the same time, try this script:
如果你想要一次嘗試加入多個房間,可以試試看這個程式碼:

setInterval( function() { JoinGame(_ROOM1_); JoinGame(_ROOM2_); JoinGame(_ROOM3_); JoinGame(_ROOM4_); JoinGame(_ROOM5_); $J('.newmodal').remove(); }, 2000 );

Replace _ROOM#_ with the room numbers. This script will try these room in order. And retry from the first one if all failed in 2 seconds.
_ROOM#_ 取代為房號,這段程式碼會自動依照順序嘗試每間房間,若都失敗則會在兩秒後重新嘗試加入。

Auto Joiner 自動加房腳本
This is a script for TamperMonkey, or GreaseMonkey. You can simply input the room number in the text field instead of using console.
這是一個 TamperMonkey 或 GreaseMonkey 使用的腳本,可以讓你直接在輸入框中輸入房號,而不需要使用console介面。

BETA: Reddit Botnet Lobby
https://steamhost.cn/steamcommunity_com/groups/MSG2015/discussions/0/598198356192273404/

This is a beta test for a new way to automatically join a lobby with user script.
這是一個測試腳本,使用全新的使用者腳本自動加入遊戲大廳。

Automatic Script 自動腳本
Browser Extension 瀏覽器套件
To use script, you need to install browser extension:
要使用腳本,你的瀏覽器必需要先安裝套件:

After installed these extension, your browser will be capable to install user script.
安裝好這些套件後,你的瀏覽器就可以安裝使用者自製的腳本了。

Script 腳本
There are many script on the Internet. I recommend these two:
網路上有很多腳本可用,我推薦以下兩款:


Your browser should prompt to install the script while you click the script link above if your browser extension was correctly installed.
如果先前瀏覽器套件安裝正確,在點擊上面腳本連結時,瀏覽器應該會自動提示安裝腳本。

If you already installed the same script before, your browser should ask you to upgrade (if newer) or reinstall the script.
如果先前安裝過相同的腳本,你的瀏覽器應該會詢問你是否要升級(如果有更新)或重新安裝腳本。

Other Scripts 其他腳本
Related Website 相關網站
Announcement and Discussion 公告與討論

Leaderboard 排行榜

MSG2015 Elite Group 菁英群組

Others 其他
Note 備註
Here are some tips and notes to know:
以下包含一些提示和說明:

  • Remember to upgrade your script to the newest version. Otherwise, your script won't recognize and buy the new skills or items.
    • 記得隨時保持腳本更新到最新,否則你的腳本不認識也不會購買新的技能或物品。
  • Do NOT use any ability manually. Your script will efficiently do it for you at the specific timing.
    • 絕對不要手動使用任何技能,你的腳本會以最有效率的方式在適當的時候自動使用。
  • Buy as many Wormholes as you can. Because Wormholes can only be acquired by purchase, no loot.
    • 請大量採購蟲洞,因為這個只能透過購買取得,無法掉落拾取。
  • Do NOT buy any Elemental Damage.
    • 不要升級任何元素傷害技能。
4 Comments
kkk512 25 Jun, 2015 @ 11:15am 
WOW
Mr.R 21 Jun, 2015 @ 9:48am 
nice
nick.exe 19 Jun, 2015 @ 9:52am 
不用 F12 這麼麻煩,裝了油猴直接裝那兩個 .js 即可,進遊戲後就全自動了
Byu Wraind Mai Zwei 19 Jun, 2015 @ 9:29am 
Firefox中文版,按了F12,請問之後要在哪輸入?