Advertisement
Guest User

i-ghost

a guest
Jan 27th, 2011
1,021
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. // Healthkit/Ammopack entity spawner script by i-ghost
  2. // Just aim your crosshairs and press one of the keys.
  3. // Save as 'ammo.cfg', or it will break.
  4.  
  5. alias clean " echo Entities removed: ; echo ------; ent_remove_all item_ammopack_small; ent_remove_all item_ammopack_medium; ent_remove_all item_ammopack_full; ent_remove_all item_healthkit_small; ent_remove_all item_healthkit_medium; ent_remove_all item_healthkit_full"
  6.  
  7. alias a_small "ent_create item_ammopack_small"
  8. alias a_med "ent_create item_ammopack_medium"
  9. alias a_full "ent_create item_ammopack_full"
  10. alias h_small "ent_create item_healthkit_small"
  11. alias h_med "ent_create item_healthkit_medium"
  12. alias h_full "ent_create item_healthkit_full"
  13.  
  14. bind kp_minus a_small
  15. bind kp_plus a_med
  16. bind kp_enter a_full
  17. bind kp_pgup h_small
  18. bind kp_rightarrow h_med
  19. bind kp_pgdn h_full
  20.  
  21. bind backspace "exec ammo; clean; bot_refill; impulse 101"
  22. clear
  23. echo */-------------------;
  24. echo Command | Effect
  25. echo ------
  26. echo clean | Will remove all ammo/health boxes
  27. echo
  28. echo backspace* | Resets health/ammo of you and bots, removes ammo/health boxes and diplays this.
  29. echo
  30. echo keypad minus* | Spawns small ammo box
  31. echo
  32. echo keypad plus* | Spawns medium ammo box
  33. echo
  34. echo keypad enter* | Spawns big ammo box
  35. echo
  36. echo keypad 9* | Spawns small box
  37. echo
  38. echo keypad 6* | Spawns medium health box
  39. echo
  40. echo keypad 3* | Spawns big health box
  41. echo ------
  42. echo *indicates a pressed key.
  43. echo -------------------\*
  44. echo
  45. echo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement