Skip to content

Instantly share code, notes, and snippets.

@Der-Eddy
Last active August 29, 2015 14:21
Show Gist options
  • Save Der-Eddy/6cbc8f0f56112ad77343 to your computer and use it in GitHub Desktop.
Save Der-Eddy/6cbc8f0f56112ad77343 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "Logging in ..."
sleep 2
echo "Banning User $1 ..."
sleep 1
echo "User $1 is banned"
exit 0
#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