I download a mod which has txd but no dff and col. How to make that object work only with txd if not how to make dff and col
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menuelse if ( cmd == "kick" )
{
if ( pstats[ player.ID ].Level < 3 ) MessagePlayer( "Error - You don't have access to it.", player);
else if ( !text ) MessagePlayer( "Error - Syntax: /kick <player> <reason>", player);
else
{
local plr = GetPlayer( GetTok( text, " ", 1 ) );
if ( !plr ) MessagePlayer( "Error - Unknown player.", player);
else
{
local reason = GetTok( text, " ", 2 );
if ( !reason ) reason = "None";
MessagePlayer( "" + plr.Name + " have been kicked. Reason: " + reason + "" );
plr.Kick();
}
}
}