06.05.2018, 19:46
What happens when second player use this command?
edit:
targetid is always 0. You didnt set it any value. You have to check params and then set targetid value.
I am not sure how do you want this command works, but try this:
edit:
targetid is always 0. You didnt set it any value. You have to check params and then set targetid value.
I am not sure how do you want this command works, but try this:
PHP код:
CMD:breakcuff(playerid, params[])
{
if(PoliceTeam(GetPlayerSkin(playerid)))
return SendClientMessage(playerid, -1, "{ff0000}Error: {Ffffff}Only Civilian can use this comamnd.");
if(BeginArrested[playerid] == 1 && Civilian(GetPlayerSkin(playerid)))
{
KillTimer(BeginArrestedTime[playerid]);
SendClientMessage(playerid, -1, "{FF7000}YOU HAVE BEEN ESCAPED FROM ARRESTED!!! RUN RUN !!!!");
SetPlayerWantedLevel(playerid, 3);
SetPlayerColor(playerid, YELLOW);
GameTextForPlayer(playerid, "~Y~ESCAPED FROM ~G~ARRESTED ~P~ RUN BABY!!!", 7000, 5);
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_NONE);
BeginArrested[playerid] = 0;
}else{
SendClientMessage(playerid, -1, "{FF0000}Error: {FFFFFF}You can use this command only while be cuffed or arrested.");
}
return 1;
}