⛓️ 블록체인/P2E-Gala

오토셀 스크립트가 갑자기 적용이 안된다면?

백뚜 2022. 1. 16. 16:08
반응형

타운스타에서 오토셀 쓰고 계신 분들이 있으시죠?

2022.01.04 - [P2E - GALA] - 타운스타 자동을 팔기 - 오토셀 (auto-sell) 스크립트

 

타운스타 자동을 팔기 - 오토셀 (auto-sell) 스크립트

타운스타를 플레이하면서 물건이 10개씩 쌓일 때마다 팔 수 있습니다. 그렇게 돈을 벌 수 있죠. 근데 어느 정도 타운이 만들어진 후에는 이걸 계속 단순히 반복적으로 팔아줘야하죠. 그리고 기다

yjh2304.tistory.com

 

며칠전부터 갑자기 안되는 경우가 있는데요, 그럴때 해결 방법입니다.

 

// ==UserScript==
// @name         Town Star Auto-Sell
// @namespace    http://tampermonkey.net/
// @version      2.3
// @description  Automatically sell crafted items.
// @author       Groove
// @match        https://townstar.sandbox-games.com/launch/
// @grant        none
// @run-at       document-start
// ==/UserScript==

 

스크립트를 조금 수정해주시면 됩니다.

위 시작부분 코드 @match        https://townstar.sandbox-games.com/launch/ 에서 마지막 / 를 지워주시면 됩니다.

즉 위 코드를 아래처럼 바꾸시면 됩니다.

// ==UserScript==
// @name         Town Star Auto-Sell
// @namespace    http://tampermonkey.net/
// @version      2.3
// @description  Automatically sell crafted items.
// @author       Groove
// @match        https://townstar.sandbox-games.com/launch
// @grant        none
// @run-at       document-start
// ==/UserScript==

(이하 생략)

 

마찬가지로 리더보드와 생산량 관찰 부분도 아래처럼 해주시면 됩니다.

// ==UserScript==
// @name         Enhanced Leaderboard
// @namespace    http://tampermonkey.net/
// @version      2
// @description  Click a row on the Leaderboard to jump directly to that town on the map.
// @author       Groove
// @match        https://townstar.sandbox-games.com/launch
// @grant        none
// @run-at       document-start
// ==/UserScript==

(이하 생략)
// ==UserScript==
// @name         Production Rate Monitor
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Monitor production rate of specified craft items.
// @author       Groove
// @match        https://townstar.sandbox-games.com/launch
// @grant        none
// @run-at       document-start
// ==/UserScript==

(이하 생략)

 

그럼 이제 동작하실 것입니다. 혹시 그래도 안된다면 댓글 ㄱㄱ

반응형