-
-
Save Der-Eddy/6cbc8f0f56112ad77343 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Logging in ..." | |
sleep 2 | |
echo "Banning User $1 ..." | |
sleep 1 | |
echo "User $1 is banned" | |
exit 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Array.au3> | |
HotKeySet("{F5}", "_start") | |
While 1 | |
Sleep(100) | |
WEnd | |
Func _start() | |
$array = StringToASCIIArray("./ban Deepismagic") | |
For $i = 0 To UBound($array) - 1 Step 1 | |
Send(Chr($array[$i])) | |
Sleep(1) | |
Next | |
Sleep(200) | |
Send("{ENTER}") | |
Exit 1 | |
EndFunc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment