Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function cmd_SpawnVehicle(player, vehicle)
  2. -- Usage: /v [vehicleid]
  3. if vehicle == nil then
  4. return AddPlayerChat(player, "Usage: /v <vehicleid (1-16)>")
  5. end
  6. print((":'%s''%d'\n"):format(vehicle, vehicle))
  7. if vehicle == 1 then
  8. return AddPlayerChat(player, "L'id du véhicule doit être compris entre 1 et 16")
  9. end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement