Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. if(strcmp(cmd, "/gotols", true) == 0)
  2. {
  3. if(IsPlayerConnected(playerid))
  4. {
  5. if(PlayerInfo[playerid][pAdmin] >= 3)
  6. {
  7. if (GetPlayerState(playerid) == 2)
  8. {
  9. new tmpcar = GetPlayerVehicleID(playerid);
  10. SetVehiclePos(tmpcar, 1529.6,-1691.2,13.3);
  11. TelePos[playerid][0] = 0.0;TelePos[playerid][1] = 0.0;
  12. }
  13. else
  14. {
  15. SetPlayerPos(playerid, 1529.6,-1691.2,13.3);
  16. }
  17. SendClientMessage(playerid, COLOR_GRAD1, " Usted ha sido teletransportado !");
  18. SetPlayerInterior(playerid,0);
  19. PlayerInfo[playerid][pInt] = 0;
  20. }
  21. else
  22. {
  23. SendClientMessage(playerid, COLOR_GRAD1, " Usted no está autorizado a utilizar el comando !");
  24. }
  25. }
  26. return 1;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement