forked from sizifart/TapswapAutoTaskClaimer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tapswapautotaskclaim.js
218 lines (211 loc) · 9.42 KB
/
tapswapautotaskclaim.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// ==UserScript==
// @name TapswapAutoTaskClaimerClaimer
// @namespace https://github.com/sizifart/
// @version 1.1
// @description Auto Claim Tasks TapSwapBot
// @author FoadDavoodi
// @match https://app.tapswap.club/*
// @icon https://i.postimg.cc/7LJ24T7F/tapsw-aplogo.png
// @grant GM_webRequest
// @downloadURL https://raw.githubusercontent.com/sizifart/TapswapAutoTaskClaimer/main/tapswapautotaskclaim.js
// @updateURL https://raw.githubusercontent.com/sizifart/TapswapAutoTaskClaimer/main/tapswapautotaskclaim.js
// @homepage https://github.com/sizifart/TapswapAutoTaskClaimer/
// @require https://code.jquery.com/jquery-3.7.1.min.js
// ==/UserScript==
(function () {
function onready(fn) {
if (document.readyState != "loading") fn();
else document.addEventListener("DOMContentLoaded", fn);
}
onready(function () {
////////////////////////////////////////////////////////////////
const styles = {
success: 'background: #28a745; color: #ffffff; font-weight: bold; padding: 4px 8px; border-radius: 4px;',
starting: 'background: #8640ff; color: #ffffff; font-weight: bold; padding: 4px 8px; border-radius: 4px;',
error: 'background: #dc3545; color: #ffffff; font-weight: bold; padding: 4px 8px; border-radius: 4px;',
info: 'background: #007bff; color: #ffffff; font-weight: bold; padding: 4px 8px; border-radius: 4px;'
};
const logPrefix = '%c[TapSwapBot] ';
const originalLog = console.log;
console.log = function () {
if (typeof arguments[0] === 'string' && arguments[0].includes('[TapSwapBot]')) {
originalLog.apply(console, arguments);
}
};
console.error = console.warn = console.info = console.debug = () => { };
/////////////////////////////////////////////////////////////////////
let listnumber = 0;
let listcount = 0;
var $ = window.jQuery;
var fullurl = window.location.hash;
var username = fullurl.split("%2522%252C%2522language_code")[0];
username = username.split("username%2522%253A%2522")[1];
var tapname = fullurl.split("%2522%252C%2522last_name")[0];
tapname = tapname.split("first_name%2522%253A%2522")[1];
var tapfamily = fullurl.split("%2522%252C%2522username")[0];
tapfamily = tapfamily.split("last_name%2522%253A%2522")[1];
var buttonn = document.createElement("Button");
buttonn.style.cssText =
"BACKGROUND-COLOR: red;top: 0px; right: 0px; position: absolute; z-index: 99999; padding: 7px 12px; border-radius: 5px;border: none;color: #fff;background: rgb(62,22,149);background: linear-gradient(63deg, rgb(62, 22, 149) 0%, rgb(94, 61, 166) 100%);font-size: 13px;text-transform: uppercase;";
buttonn.id = "sizifart";
buttonn.innerHTML = tapname + " ( " + username + " )";
document.body.appendChild(buttonn);
var backbutton = document.createElement("Button");
backbutton.style.cssText =
"display:none;BACKGROUND-COLOR: blue;bottom: 0px; right: 0px; position: absolute; z-index: 99999; padding: 3px 2px;";
backbutton.id = "sizifart";
backbutton.innerHTML = "Back";
document.body.appendChild(backbutton);
backbutton.addEventListener("click", async () => {
try {
Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Account")).click();
} catch (err) {
console.error(err.name, err.message);
}
});
//////////////////////////////////////////////////////////////////////////////////////////////
///// Get Answers /////
function getanswer(soal = "") {
var storedText = "";
var answers = "NotFound";
soal = soal.replace("+", "");
soal = soal.replace("`", "");
console.log("Shahan Question : ---" + soal + "---");
fetch(
"https://raw.githubusercontent.com/sizifart/TapswapAutoTaskClaimer/main/list.json"
).then(function (response) {
response.text().then(function (text) {
storedText = text;
done();
});
});
function done() {
if (storedText) {
const bigObj = JSON.parse(storedText, (key, value, context) => {
if (key == soal) {
storedText = value;
}
return storedText;
});
const input = document.evaluate(
"/html/body/div/div[1]/div[2]/div[3]/div[2]/div/div[3]/div/div/input",
document,
null,
XPathResult.FIRST_ORDERED_NODE_TYPE,
null
).singleNodeValue;
if(storedText.includes("{")){
storedText = "";
}
if (input) {
input.value = storedText;
const inputEvent = new Event("input", { bubbles: true });
input.dispatchEvent(inputEvent);
const close1 = Array.from(document.querySelectorAll("button")).find(
(el) => el.textContent.includes("Submit")
);
if (close1) {
close1.click();
}
setTimeout(function () {
close1.click();
},1000);
}
answers = storedText;
} else {
answers = "NotFound";
}
console.log("Shahan Answer : ---" + answers + "---");
setTimeout(function () {
const input = document.querySelector('input[type="string"]');
if (input) {
input.focus();
}
}, 1000);
}
}
///// Close Messages And Go Tasks/////
setInterval(function () {
const clos = document.querySelectorAll('img[alt="close"]')[0];
const close1 = Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Get it!"));
const taskkk = Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Task"));
const relod = Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Reload"));
if (clos) {clos.click();}
if (close1) {close1.click();}
if (taskkk) {taskkk.click();}
if (relod) {location.reload();}
}, 2000);
setInterval(function () {
const gomission = Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Go"));
const submitt = Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Submit"));
const watchclick = Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Watch"));
const finishmission = Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Finish mission"));
const check = Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Check"));
const claimm = Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Claim"));
const startmission = Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Start mission"));
const perror = Array.from(document.querySelectorAll("p")).find((el) => el.textContent.includes("Looks like you"));
const tasklistcinema = Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Cinema"));
const tasklistspecial = Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Special"));
const tasklistleagues = Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Leagues"));
const tasklistref = Array.from(document.querySelectorAll("button")).find((el) => el.textContent.includes("Ref"));
const watchlink = document.querySelectorAll('a[class^="_link_"]').length;
if (perror && submitt) {
submitt.click();
backbutton.click();
}
if (perror && check) {
check.click();
backbutton.click();
}
if (gomission) {
gomission.click();
}
if (watchlink == 1) {
document.querySelectorAll('a[class^="_link_"]')[0].removeAttribute("target");
document.querySelectorAll('a[class^="_link_"]')[0].removeAttribute("href");
}
if(tasklistcinema && tasklistspecial && tasklistleagues && tasklistref && !startmission && !watchclick && !finishmission){
const listcount = document.querySelectorAll('button[class^="_listItem_"]').length;
if(listcount == listnumber || listnumber > listcount){
listnumber = 0;
if(listcount != 0){
const acc = listnumber +1 ;
console.log(`${logPrefix}Action : `+acc+`/`+listcount, styles.info);
}
}else{
if(listcount != 0){
const acc = listnumber +1 ;
console.log(`${logPrefix}Action : `+acc+`/`+listcount, styles.info);
}
}
const list1 = document.querySelectorAll('button[class^="_listItem_"]')[listnumber];
if(list1){
list1.click();
listnumber++;
}
}
if (startmission) {
startmission.click();
}
if (watchclick && finishmission && !check && !submitt) {
watchclick.click();
}
if (watchclick && finishmission && !check && submitt && !perror) {
const firstitem = document.querySelectorAll("h3")[0].innerHTML;
getanswer(firstitem);
}
if (check) {
check.click();
}
if (finishmission) {
finishmission.click();
}
if (claimm) {
claimm.click();
setTimeout(function () {
backbutton.click();
}, 2000);
}
}, 1000);
});
})();