Guest User

Untitled

a guest
Nov 18th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. if(strcmp(cmd, "/bgps", true) == 0)
  2. {
  3. if(IsPlayerConnected(playerid))
  4. {
  5. tmp = strtok(cmdtext, idx);
  6. if(!strlen(tmp))
  7. {
  8. SendClientMessage(playerid, COLOR_GRAD2, "Koriscenje: /bgps [biznumber]");
  9. return 1;
  10. }
  11. new housenum = strval(tmp);
  12. SetPlayerCheckpoint(playerid,BizzInfo[housenum][bEntranceX],BizzInfo[housenum][bEntranceY],BizzInfo[housenum][bEntranceZ], 6.0);
  13. format(string, sizeof(string), "Postavili ste GPS na biznis broj: [%i]",housenum);
  14. SendClientMessage(playerid,COLOR_YELLOW,string);
  15. }
  16. return 1;
  17. }
Add Comment
Please, Sign In to add comment