progs.src 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #output "../progs.dat"
  2. #copyright "Machinegames 2021"
  3. // Enables downed zombies to be gibbed by nearby explosions
  4. // #define GIB_DOWNED_ZOMBIES
  5. // Enables grenade downward slope bounce fix
  6. #define GRENADE_BOUNCE_FIX
  7. // Enables monsters being aware of being in dangerous liquids
  8. #define MONSTERS_AWARE_OF_CONTENTS
  9. // Enables experimental coop respawn behaviour: items respawn <num_players> times so all players have a chance to pick them up
  10. #define COOP_RESPAWN_ITEMS_FOR_PLAYERS
  11. // Enables experimental coop respawn behaviour: keep all the players weapons when a checkpoint is activated
  12. #define COOP_RESPAWN_KEEP_WEAPONS
  13. // Makes it so that killing an entity that has a delayed trigger behaviour while the delay is pending also cancels the delayed trigger
  14. #define ALLOW_DELAYED_THINK_CANCEL
  15. #includelist
  16. defs.qc
  17. math.qc
  18. subs.qc
  19. frametick.qc
  20. fight.qc
  21. ai.qc
  22. combat.qc
  23. items.qc
  24. items_runes.qc
  25. weapons.qc
  26. fog.qc // Fog controls
  27. world.qc
  28. client.qc
  29. player.qc
  30. monsters.qc
  31. doors.qc
  32. buttons.qc
  33. triggers.qc
  34. plats.qc
  35. misc.qc
  36. func_bob.qc
  37. lights.qc
  38. rotate.qc
  39. func_toss.qc
  40. // func_fade.qc // Bad behavior
  41. monsters/ogre.qc
  42. monsters/demon.qc
  43. monsters/shambler.qc
  44. monsters/knight.qc
  45. monsters/soldier.qc
  46. monsters/wizard.qc
  47. monsters/dog.qc
  48. monsters/zombie.qc
  49. monsters/boss.qc
  50. monsters/tarbaby.qc // registered
  51. monsters/hknight.qc // registered
  52. monsters/fish.qc // registered
  53. monsters/shalrath.qc // registered
  54. monsters/enforcer.qc // registered
  55. monsters/oldone.qc // registered
  56. misc_corpses.qc //Corpses yay
  57. misc_fx.qc // adds screenshake
  58. misc_model.qc //generic static and animated model
  59. //Map specific code? Why not..
  60. map_specific/mge2m2.qc
  61. map_specific/hub.qc
  62. horde.qc // Yoder readded Sept 24, 2021
  63. #endlist