Advertisement
Artem78

Поиск ближайшего педа

Jun 2nd, 2013
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. :Search_start
  2. VAR
  3. 1@: Integer
  4. 4@: Integer
  5. 3@: Float
  6. 5@: Float
  7. END
  8. 2@ = 0
  9. 3@ = 0.0
  10. 4@ = 0
  11.  
  12. :Search_1
  13. wait 0
  14. 04C4: store_coords_to 10@ 11@ 12@ from_actor $PLAYER_ACTOR with_offset 0.0 0.0 0.0
  15. 0AE1: 1@ = random_actor_near_point 10@ 11@ 12@ in_radius 50.0 find_next 2@ pass_deads 1
  16. 2@ = 1
  17.  
  18. if 1@ <> 0
  19. jf @Search_2
  20. 04C4: store_coords_to 20@ 21@ 22@ from_actor 1@ with_offset 0.0 0.0 0.0
  21. 050A: 5@ = distance_between_XYZ 10@ 11@ 12@ and_XYZ 20@ 21@ 22@
  22. if 5@ < 3@
  23. jf @Search_1
  24. 4@ = 1@
  25. 3@ = 5@
  26. jump @Search_1
  27.  
  28. :Search_2
  29. if 4@ <> 0
  30. jf @Search_end
  31. // в 4@ получаем педа
  32. // например, дадим ему много жизней
  33. 0223: set_actor 4@ health_to 99999
  34.  
  35. :Search_end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement