Helper to withdraw/deposit
สคริปต์นี้ไม่ควรถูกติดตั้งโดยตรง มันเป็นคลังสำหรับสคริปต์อื่น ๆ เพื่อบรรจุด้วยคำสั่งเมทา // @require https://update.greasyfork.org/scripts/457232/1132441/Bank%20Requester%202.js
// ==UserScript== // @name Bank Requester 2 // @version 1.2 // @description Helper to withdraw/deposit // @author puddle // @include /fairview.deadfrontier.com/ // @grant none // @require https://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js // ==/UserScript== function withdraw(money, params){ return new Promise(function(resolve){ var sc = params.match(/sc=(.*?)&/)[1]; var id = params.match(/userID=(.*?)&/)[1]; var password = params.match(/password=(.*?)&/)[1]; $.post("https://fairview.deadfrontier.com/onlinezombiemmo/bank.php", "withdraw="+money+"&templateID=undefined&sc=" + sc + "&userID="+id+"&password="+password, (response) => resolve(response) ); }); } function deposit(money, params){ return new Promise(function(resolve){ var sc = params.match(/sc=(.*?)&/)[1]; var id = params.match(/userID=(.*?)&/)[1]; var password = params.match(/password=(.*?)&/)[1]; $.post("https://fairview.deadfrontier.com/onlinezombiemmo/bank.php", "deposit="+money+"&templateID=undefined&sc=" + sc + "&userID="+id+"&password="+password, (response) => resolve(response) ); }); }