-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcareer.lib
66 lines (60 loc) · 2.56 KB
/
career.lib
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
# $HOME/$twm_dir/career.lib
# Copyright (c) 2019-2024 Ueliton Alves Dos Santos
# Licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License
career_func () {
printf "$(G_T "career") ... \n"
(
w3m -cookie -o http_proxy=$PROXY -o accept_encoding=UTF-8 -debug -dump_source "${URL}/career/" -o user_agent="$vUserAgent" >$TMP/SRC
) </dev/null &>/dev/null &
time_exit 17
if grep -q -o -E '/career/attack/[?]r[=][0-9]+' $TMP/SRC ; then
clan_id
if [ -n "${CLD}" ] ; then
(
w3m -cookie -o http_proxy=$PROXY -o accept_encoding=UTF-8 -debug "${URL}/clan/${CLD}/quest/help/6" -o user_agent="$vUserAgent" &>/dev/null
) </dev/null &>/dev/null &
time_exit 17
echo "/clan/${CLD}/quest/help/6"
fi
(
w3m -cookie -o http_proxy=$PROXY -o accept_encoding=UTF-8 -debug -dump_source "${URL}/career/" -o user_agent="$vUserAgent" >$TMP/SRC
) </dev/null &>/dev/null &
time_exit 20
if grep -q -o -E '/career/(attack|take)/[?]r[=][0-9]+' $TMP/SRC ; then
#/'=\\\&apos
local CAREER=$(grep -o -E '/career/(attack|take)/[?]r[=][0-9]+' $TMP/SRC)
local BREAK=$(( $(date +%s) + 60 ))
while [ -n "$CAREER" ] && [ $(date +%s) -lt "$BREAK" ] ; do
case $CAREER in
(*attack*|*take*)
(
w3m -cookie -o http_proxy=$PROXY -o accept_encoding=UTF-8 -debug -dump_source "${URL}$CAREER" -o user_agent="$vUserAgent" >$TMP/SRC
) </dev/null &>/dev/null &
time_exit 20
echo "$CAREER"
local CAREER=$(grep -o -E '/career/(attack|take)/[?]r[=][0-9]+' $TMP/SRC|sed -n '1p')
;;
esac
done
fi
if [ -n "$CLD" ] ; then
(
w3m -cookie -o http_proxy=$PROXY -o accept_encoding=UTF-8 -debug "$URL/clan/$CLD/quest/deleteHelp/6" -o user_agent="$vUserAgent" &>/dev/null
) </dev/null &>/dev/null &
time_exit 17
printf "/clan/$CLD/quest/deleteHelp/6\n"
fi
(
w3m -cookie -o http_proxy=$PROXY -o accept_encoding=UTF-8 -debug -dump_source "${URL}/quest/" -o user_agent="$vUserAgent" >$TMP/SRC
) </dev/null &>/dev/null &
time_exit 20
local ENDQUEST=$(grep -o -E '/quest/end/16[?]r[=][A_z0-9]+' $TMP/SRC)
(
w3m -cookie -o http_proxy=$PROXY -o accept_encoding=UTF-8 -debug -dump_source "${URL}${ENDQUEST}" -o user_agent="$vUserAgent" >$TMP/SRC
) </dev/null &>/dev/null &
time_exit 20
printf "${GREEN_BLACK}$(G_T "career") (✔)${COLOR_RESET}\n"
else
printf "${GREEN_BLACK}$(G_T "career") (✔)${COLOR_RESET}\n"
fi
}