helper.bootPlayer
Prototype
function bootPlayer(playername, duration)
Input parameters
playername - user name of the player to boot
duration - the duration in minutes for how long the player should be booted
Return value
null
Description
Immediately disconnects a player from the game and prevents it from joining within the duration number of minutes.
Example code
// Boot a player from the game for 5 minutes
bootPlayer(badPlayer, 5);
