Add files via upload

This commit is contained in:
egieb
2024-01-11 11:41:39 +00:00
committed by GitHub
parent b3a99b6144
commit d5cdeec906

15
Tools/Anti-AFK-Tool.txt Normal file
View File

@@ -0,0 +1,15 @@
REM Title: Anti-AFK Tool
REM Author: @beigeworm | https://github.com/beigeworm
REM Description: Press random movement keys (Anti-AFK)
REM Target: Windows 10
REM some setup for dukie script.
DEFAULT_DELAY 100
DELAY 1000
GUI r
DELAY 500
STRING powershell -NoP -NonI -Exec Bypass
ENTER
DELAY 4000
STRING Add-Type -AssemblyName System.Windows.Forms;while ($true) {$key = @('w','a','s','d');$randomKey = (Get-Random -InputObject $key -Count 1);[System.Windows.Forms.SendKeys]::SendWait($randomKey);[System.Windows.Forms.SendKeys]::SendWait($randomKey);sleep 1}
ENTER