Advertisement
Guest User

Untitled

a guest
Aug 29th, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. if(strcmp(cmd, "/buygunlic", true) == 0)
  2. {
  3. if(IsPlayerConnected(playerid))
  4. {
  5. if(IsPlayerInRangeOfPoint(playerid, 3,249.5233,67.9590,1003.6406))
  6. {
  7. if(PlayerInfo[playerid][pGunLic] == 0)
  8. {
  9. if(GetPlayerMoney(playerid) < 4999)
  10. {
  11. SendClientMessage(playerid, COLOR_LIGHTBLUE, "[GRESKA] Nemate dovoljno novca za dozvolu za oruzije (5000$)!");
  12. return 1;
  13. }
  14. else
  15. {
  16. SendClientMessage(playerid, COLOR_LIGHTBLUE, "Cestitamo kupili ste dozvolu za oruzije !");
  17. SafeJBC_GivePlayerMoney(playerid, - 5000);
  18. PlayerInfo[playerid][pGunLic] = 1;
  19. OnPlayerUpdateCustom(playerid);
  20. }
  21. }
  22. else
  23. {
  24. SendClientMessage(playerid, COLOR_LIGHTBLUE, "[INFO] Vec posedujes dozvolu za oruzije !");
  25. return 1;
  26. }
  27. }
  28. }
  29. return 1;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement