Skip to content

Instantly share code, notes, and snippets.

@inertia186
Created February 18, 2013 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inertia186/4975445 to your computer and use it in GitHub Desktop.
Save inertia186/4975445 to your computer and use it in GitHub Desktop.
[Minecraft, SMP] This script will announce that a player will be banned for a particular reason, then bans them after 15 seconds.
cmd="say $1 will be banned in 15 seconds. Reason: $2"
bash -c "screen -p 0 -S minecraft -X eval 'stuff \"$cmd\"\015'"
sleep 15
cmd="ban $1 $2"
bash -c "screen -p 0 -S minecraft -X eval 'stuff \"$cmd\"\015'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment