-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayload.txt
58 lines (43 loc) · 1.16 KB
/
payload.txt
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
REM_BLOCK
Title: Anti-AFK-USB
Author: github.com/infomanc3r
Description: This script will automatically generate keyboard input within specified parameters
Allows the user to avoid AFK penalties or other inactivity based shutdowns
Keyboard emulation prevents most software/macro detection
Initial config was set up to avoid AFK disconnect in Sea of Thieves (lol)
Keypresses and durations can be modified to suit your needs
END_REM
ATTACKMODE HID
BUTTON_DEF
STOP_PAYLOAD
END_BUTTON
DELAY 500
VAR $DIRECTION = 1
WHILE TRUE
$_RANDOM_MIN = 750
$_RANDOM_MAX = 1750
IF ( $DIRECTION == 1 ) THEN
HOLD W
DELAY $_RANDOM_INT
RELEASE W
END_IF
IF ( $DIRECTION == 2 ) THEN
HOLD A
DELAY $_RANDOM_INT
RELEASE A
END_IF
IF ( $DIRECTION == 3 ) THEN
HOLD S
DELAY $_RANDOM_INT
RELEASE S
END_IF
IF ( $DIRECTION == 4 ) THEN
HOLD D
DELAY $_RANDOM_INT
RELEASE D
END_IF
DELAY $_RANDOM_INT * 40
$_RANDOM_MIN = 1
$_RANDOM_MAX = 4
$DIRECTION = $_RANDOM_INT
END_WHILE