25.02.2014, 04:03
when admins do it it give the wanted to the id 0 not to the requirement id.
Код:
CMD:setwanted(playerid, params[])
{
if(PlayerInfo[playerid][Level] >= 3)
{
new tmp[256], tmp2[256], Index, player1 = strval(tmp), Float:x, Float:y, Float:z, Float:angle; tmp = strtok(params,Index), tmp2 = strtok(params,Index);
if(isnull(tmp)) return SendClientMessage(playerid, red, "USAGE:/setwanted [playerid]");
SendClientMessageToAll(TEAM_Wanted_COLOR, "NOTABLE:Kill The Black Blip And Earn To Yourself a Prize.");
SetPlayerTeam(player1, TEAM_Wanted);
SetPlayerColor(player1, TEAM_Wanted_COLOR);
SetPlayerHealth(player1, 100);
SetPlayerArmour(player1, 100);
ResetPlayerWeapons(player1);
GetPlayerPos(player1,x, y, z);
CreateVehicle(468, x, y, z, angle, 0, 1, 60);
Update3DTextLabelText(RankLabel[player1], 0xFFFFFFFF, " ");
gTeam[player1] = TEAM_Wanted;
}else return SendClientMessage(playerid, red, "ERROR:You need to be admin to use this command!");
return 1;
}

