Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Automatyczne Wpłacanie Siana do Klanu
- // @version 1.0
- // @author Ktoś && Poprawki Squanchy
- // @match https://*.margonem.pl/
- // ==/UserScript==
- const MinWplataGolda = 1_000_000; //Kwota wpłacana
- const MinGoldZachowany = 10_000_000; //Kwota która musi zostać po wpłacie
- const WplacanieGolda = (MinWplataGolda, MinGoldZachowany) => {
- if (hero.gold - MinWplataGolda < MinGoldZachowany) {
- return;
- }
- _g(`clan&a=save&f=gold&v=${hero.gold - MinGoldZachowany}`);
- };
- const old = parseInput;
- parseInput = (a, b, c) => {
- old(a, b, c);
- WplacanieGolda(MinWplataGolda, MinGoldZachowany);
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement