Advertisement
RyanCordell

[Duke Nukem 3D game.con] No Slimers

Jul 19th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.40 KB | None | 0 0
  1. //Ideally this goes at the very bottom of the extracted game.con file so this takes effect after all else.
  2.  
  3. define egg 675
  4. define greenslime 2370
  5.  
  6. eventloadactor egg
  7. {
  8.     killit
  9. }
  10. enda
  11.  
  12. eventloadactor greenslime
  13. {
  14.     killit
  15. }
  16. enda
  17.  
  18. onevent EVENT_SPAWN
  19.   ifactor greenslime
  20.     killit
  21. endevent
  22.  
  23. //In USER.CON, do a CTRL+F to find the Green slimer and then comment out all the other sounds.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement