Advertisement
Guest User

Untitled

a guest
Dec 11th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. {$CLEO .cs}
  2.  
  3. //-------------MAIN---------------
  4. 0662: printstring "Taxi"
  5. thread 'Taxi'
  6. wait 2500
  7. 0B34: samp register_client_command "spawncivil" to_label @Taxi_113
  8.  
  9. :Taxi_102
  10. wait 0
  11. jump @Taxi_102
  12.  
  13. :taxi_113
  14. if
  15. 9@ = Marker.CreateIconAndSphere(23, 1790.587, -1861.851, 13.577)
  16. 0570: 10@ = create_asset_radar_marker_with_icon 23 at 1790.587 -1861.851 13.577
  17. chatmsg "{fff000}Ai activat un checkpoint." -1
  18. 00D4: jump_if_false @sphere
  19. samp.cmdret()
  20.  
  21. :loop
  22. wait 0 ms
  23. if
  24. 0256: player $PLAYER_CHAR defined
  25. jf @taxi_113
  26. samp.cmdret()
  27.  
  28. :sphere
  29. wait 0
  30. if or
  31. 00FF: actor $PLAYER_ACTOR sphere 1 in_sphere 1790.587 -1861.851 13.577 radius 1.0 1.0 2.0 on_foot
  32. 0100: actor $PLAYER_ACTOR in_sphere 1790.587 -1861.851 13.577 radius 4.0 4.0 4.0 sphere 1 in_car
  33. then
  34. wait 0
  35. chatmsg "{fff000}Checkpoint-ul a fost dezactivat." -1
  36. Marker.Disable(9@)
  37. Marker.Disable(10@)
  38. end
  39. 00D4: jump_if_false @loop
  40. goto @taxi_113
  41. samp.cmdret()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement