20.07.2012, 17:56
Quote:
pawn Код:
|
pawn Код:
CMD:rights(playerid, params[])
{
new id = strval(params);
if(IsACop(playerid))
if(!IsPlayerConnected(id))SendClientMessage(playerid, 0xFF0000FF, "Invalid Player ID");
else
{
SendClientMessage(id, COLOR_RED, "You Have The Right To Remain Silent.");
SendClientMessage(id, COLOR_RED, "Anything You Say Can Be Used Against You In a Court Of Law.");
SendClientMessage(id, COLOR_RED, "You Have The Right To An Attorney Present Now And During Any Further Questioning");
SendClientMessage(id, COLOR_RED, "If You Can Not Afford An Attorney, One Will Be Appointed To You Free Of Charge If You Wish");
SendClientMessage(id, COLOR_RED, "Do You Understand Your Rights As They Have Been Read To You?((Say Yes Or No To The Officer))");
}
return 1; // Always need to return 1 on commands, or you'll see "SERVER: Unknown Command".
}