반응형
타운스타에서 오토셀 쓰고 계신 분들이 있으시죠?
2022.01.04 - [P2E - GALA] - 타운스타 자동을 팔기 - 오토셀 (auto-sell) 스크립트
며칠전부터 갑자기 안되는 경우가 있는데요, 그럴때 해결 방법입니다.
// ==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==
(이하 생략)
그럼 이제 동작하실 것입니다. 혹시 그래도 안된다면 댓글 ㄱㄱ
반응형
'⛓️ 블록체인 > P2E-Gala' 카테고리의 다른 글
타운스타에서 사기적인 아이템 - 밀 스탠드 (wheat stand) (0) | 2022.01.09 |
---|---|
타운스타 초보자를 위한 초반 (2) - 가솔린 시설을 구축하자 (0) | 2022.01.05 |
타운스타 자동을 팔기 - 오토셀 (auto-sell) 스크립트 (0) | 2022.01.04 |
타운스타 초보자를 위한 초반 (1) - 양모를 팔아 돈을 모아보자 (0) | 2022.01.03 |
타운스타 시작 전에 알아두면 좋을 것들 (업데이트 중) (1) | 2022.01.01 |