15.02.2013, 17:40
PHP код:
CMD:prender(playerid, params[])
{
new id, tempo, motivo, msg[120];
if(sscanf(params, "uds", id, tempo, motivo)) return SendClientMessage(playerid, -1, "(Use) /prender [id] [tempo] [motivo]");
{
if(tempo > 0 && tempo < 15) return SendClientMessage(playerid, -1 , "1 a 15 Minutos");
format(msg, sizeof(msg), "O Policial %s Prendeu vocк Por : %s, Tempo: %d", Nome(playerid), motivo, tempo);
SendClientMessage(playerid, -1, msg);
SetPlayerPos(id, CORX, CORDY, CORDZ);
SendClientMessage(playerid, -1, "Jogador Preso ");
}
return 1;
}