31.10.2011, 17:50
(
Последний раз редактировалось SantarioLeone; 31.10.2011 в 18:35.
)
Simply made this topic so i dont have to make multiple ones, as i need help, or need a question answered i'll update this thread hopefully to get help. For this Badge Command, how would i make it so when im on duty, i type /badge aand my player color turns white, but if i type /badge again, my color turns back to Blue. Identifying me as on duty?
GivePlayerWeapon [X]Solved
Badge Command[]Pending
So how do i make the pepperspray ammo unlimited?
GivePlayerWeapon [X]Solved
Badge Command[]Pending
pawn Код:
CMD:badge(playerid, params[])
{
if(PlayerInfo[playerid][pMember] == 1 || PlayerInfo[playerid][pLeader] == 1)
{
SetPlayerColor(playerid, COLOR_WHITE);
SendClientMessage(playerid, 0x2641FEAA, "[True:RP]You will now be identified as being undercover/off duty.");
return 1;
}
else return SendClientMessage(playerid, COLOR_RED,"[True:RP]Only Government Officials Can Hide Their Badges. ");
}