Guest User

Untitled

a guest
Dec 2nd, 2015
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. if(strcmp(cmd, "/fill", true) == 0)
  2. {
  3. if(IsPlayerConnected(playerid))
  4. {
  5. if(IsAtGasStation(playerid))
  6. {
  7. if(Gas[idcar] <= 99)
  8. {
  9. TogglePlayerControllable(playerid, 0);
  10. GameTextForPlayer(playerid,"~b~~n~~n~~n~~n~~n~~n~~n~~n~~n~Rezervoar se puni, sacekajte!",3000,3);
  11. SetTimer("Fillup",RefuelWait,0);
  12. Refueling[playerid] = 1;
  13. }
  14. else
  15. {
  16. GameTextForPlayer(playerid,"~r~~n~~n~~n~~n~~n~~n~~n~~n~~n~kanister je pun",3000,4);
  17. }
  18. }
  19. else
  20. {
  21. SendClientMessage(playerid,COLOR_GREY,"[GRESKA] Niste na Pumpi!");
  22. }
  23. }
  24. return 1;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment