Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. if(strcmp(cmd, "/supmobil", true) == 0)
  2. {
  3. if(IsPlayerConnected(playerid))
  4. {
  5. if (PlayerInfo[playerid][pAdmin] >= 1 ||PlayerInfo[playerid][pSupporter] >= 1)
  6. {
  7. if(supmobil[playerid] != 0)
  8. {
  9. new engine,lights,alarm,doors,bonnet,boot,objective;
  10. GetVehicleParamsEx(supmobil[playerid],engine,lights,alarm,doors,bonnet,boot,objective);
  11. SetVehicleParamsEx(supmobil[playerid],VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective);
  12. DestroyVehicle(supmobil[playerid]);
  13. Delete3DTextLabel(suptext[playerid]);
  14. SendClientMessage(playerid, COLOR_GREY, "Fahrzeug vernichtet.");
  15. supmobil[playerid] = 0;
  16. }
  17. else
  18. {
  19. ShowPlayerDialog(playerid, DIALOG_SUPMOBIL, DIALOG_STYLE_LIST, "Fahrzeug Auswahl", "1. Caddy\n2. Sultan\n3. Bus\n4. NRG\n5. Boot\n6. Heli\n7. Fahrzeug ID", "Auswahl", "Abbrechen");
  20. }
  21. }
  22. else return SendClientMessage(playerid, COLOR_GREY, "Du bist kein Admin.");
  23. }
  24. return 1;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement