Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if(strcmp(cmd, "/buygunlic", true) == 0)
- {
- if(IsPlayerConnected(playerid))
- {
- if(IsPlayerInRangeOfPoint(playerid, 3,249.5233,67.9590,1003.6406))
- {
- if(PlayerInfo[playerid][pGunLic] == 0)
- {
- if(GetPlayerMoney(playerid) < 4999)
- {
- SendClientMessage(playerid, COLOR_LIGHTBLUE, "[GRESKA] Nemate dovoljno novca za dozvolu za oruzije (5000$)!");
- return 1;
- }
- else
- {
- SendClientMessage(playerid, COLOR_LIGHTBLUE, "Cestitamo kupili ste dozvolu za oruzije !");
- SafeJBC_GivePlayerMoney(playerid, - 5000);
- PlayerInfo[playerid][pGunLic] = 1;
- OnPlayerUpdateCustom(playerid);
- }
- }
- else
- {
- SendClientMessage(playerid, COLOR_LIGHTBLUE, "[INFO] Vec posedujes dozvolu za oruzije !");
- return 1;
- }
- }
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement