02.02.2009, 02:19
pawn Код:
dcmd_pullover(playerid,params[])
{
new giveplayerid, reason[128];
if(sscanf(params,"ds",giveplayerid,reason))
{
//They left out a parameter
}
if(!IsPlayerConnected(giveplayerid))
{
//The specified player is not connected
}
//They specified a connected player and a reason
//Do the rest
}