Advertisement
Guest User

Untitled

a guest
Nov 8th, 2014
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. actor weakwhip
  2. {
  3. +bloodlessimpact
  4. +notimefreeze
  5. Radius 18
  6. Height 10
  7. Speed 50
  8. Damage (20)
  9. Projectile
  10. -NoBlockMap
  11. +ripper
  12. +NoBlood
  13. +NoIceDeath
  14. +DontGib
  15. scale 2
  16. RenderStyle Normal
  17. states
  18. {
  19. spawn:
  20. LINK A 1 a_spawnitemex ("leatherwhiplink")
  21. LINK A 1 a_spawnitemex ("leatherwhiplink")
  22. LINK A 1 a_spawnitemex ("leatherwhiplink")
  23. LINK A 1 a_spawnitemex ("leatherwhiplink")
  24. LINK A 1 a_spawnitemex ("leatherwhiplink")
  25. goto whiplash
  26. death:
  27. SWMS ABC 3
  28. stop
  29. whiplash:
  30. TNT1 A 0 a_spawnitem ("whiplash1")
  31. LINK A 10 a_stop
  32. TNT1 A 0 a_killchildren (KILS_KILLMISSILES)
  33. stop
  34. }
  35. }
  36.  
  37. actor leatherwhiplink
  38. {
  39. +ripper
  40. damage (0)
  41. projectile
  42. states
  43. {
  44. spawn:
  45. LINK A 1
  46. loop
  47. death:
  48. TNT1 A 0
  49. stop
  50. }
  51. }
  52.  
  53. actor whiplash1
  54. {
  55. projectile
  56. +ripper
  57. damage (0)
  58. scale 2
  59. states
  60. {
  61. spawn:
  62. TNT1 A 0 a_explode (20,40)
  63. VFX2 ABCD 3
  64. stop
  65. }
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement