24.07.2013, 22:29
Dialog de comprar armas.
Tambйm pode acrescentar em:
pawn Код:
if (!PlayerInfo[playerid][pGunLic])
return SendClientMessage(playerid, -1, "Vocк nгo possui porte legal de armas, por isso nгo pode adquirir uma!");
pawn Код:
public SetPlayerUnjail() {
for ( new i; i < MAX_PLAYERS; ++i ) {
if (IsPlayerConnected(i) ) {
if (!PlayerInfo[i][pGunLic] && 1 <= GetPlayerWeapon(i) <= 47 ) {
ResetPlayerWeapons(i);
SendClientMessage(i, -1, "Sem licenзa! Armas retiradas!");
}
}
}
return true;
}