Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1. #Kill specific characters because they should not be in the map at certain points
  2. any_character = {
  3. limit = {
  4. is_ruler = no
  5. spouse = {
  6. is_ruler = no
  7. }
  8. any_dynasty_member = {
  9. is_ruler = no
  10. }
  11. any_child = {
  12. is_ruler = no
  13. }
  14. mother = {
  15. is_ruler = no
  16. }
  17. father = {
  18. is_ruler = no
  19. }
  20. OR = {
  21. AND = {
  22. OR = {
  23. TOW_is_demon_race = yes
  24. TOW_is_elemental_or_void = yes
  25. }
  26. NOT = { has_character_flag = important_summon }
  27. }
  28. AND = {
  29. trait = race_goblin
  30. OR = {
  31. has_global_flag = bm_troll_wars
  32. has_global_flag = bm_gurubashi_civil_war
  33. has_global_flag = bm_seven_kingdoms
  34. has_global_flag = bm_last_anvilmar
  35. has_global_flag = bm_three_hammers
  36. }
  37. }
  38. AND = {
  39. OR = {
  40. trait = race_blood_elf
  41. trait = race_wretched
  42. trait = race_night_elf
  43. trait = race_tauren
  44. }
  45. NOR = {
  46. has_global_flag = bm_hunt_for_the_betrayer
  47. has_global_flag = bm_drums_of_war
  48. }
  49. }
  50. AND = {
  51. OR = {
  52. trait = gnome
  53. trait = dwarf
  54. trait = trogg
  55. }
  56. has_global_flag = bm_troll_wars
  57. }
  58. AND = {
  59. trait = race_vrykul
  60. NOR = {
  61. has_global_flag = bm_troll_wars
  62. has_global_flag = bm_gurubashi_civil_war
  63. }
  64. }
  65. AND = {
  66. trait = race_undead_scourge
  67. NOR = {
  68. has_global_flag = bm_path_of_the_damned
  69. has_global_flag = bm_hunt_for_the_betrayer
  70. has_global_flag = bm_drums_of_war
  71. }
  72. }
  73. AND = {
  74. trait = race_undead_forsaken
  75. NOT = { has_global_flag = bm_drums_of_war }
  76. }
  77. AND = {
  78. OR = {
  79. trait = race_broken
  80. trait = race_lost_one
  81. }
  82. NOR = {
  83. has_global_flag = bm_lord_of_the_clans
  84. has_global_flag = bm_scourge_of_lordaeron
  85. has_global_flag = bm_path_of_the_damned
  86. has_global_flag = bm_hunt_for_the_betrayer
  87. has_global_flag = bm_drums_of_war
  88. }
  89. }
  90. AND = {
  91. OR = {
  92. trait = race_orc
  93. trait = race_ogre
  94. }
  95. NOR = {
  96. has_global_flag = bm_fall_of_stormwind
  97. has_global_flag = bm_tides_of_darkness
  98. has_global_flag = bm_lord_of_the_clans
  99. has_global_flag = bm_scourge_of_lordaeron
  100. has_global_flag = bm_path_of_the_damned
  101. has_global_flag = bm_hunt_for_the_betrayer
  102. has_global_flag = bm_drums_of_war
  103. }
  104. }
  105. AND = {
  106. trait = race_orc
  107. OR = {
  108. culture = warsong
  109. AND = {
  110. culture = shadowmoon
  111. NOT = { has_character_flag = stormreaver }
  112. }
  113. culture = thunderlord
  114. culture = lightnings_blade
  115. AND = {
  116. culture = bladewind
  117. #NOT = { character = } # Garona check
  118. }
  119. culture = redwalker
  120. culture = whiteclaw
  121. culture = dark_scar
  122. culture = bonechewer
  123. culture = laughing_skull
  124. culture = flowerpicker
  125. AND = {
  126. culture = mok_nathal
  127. #NOT = { character = } # Rexxar check
  128. }
  129. }
  130. NOR = {
  131. has_global_flag = bm_lord_of_the_clans
  132. has_global_flag = bm_scourge_of_lordaeron
  133. has_global_flag = bm_path_of_the_damned
  134. has_global_flag = bm_hunt_for_the_betrayer
  135. has_global_flag = bm_drums_of_war
  136. }
  137. }
  138. AND = {
  139. trait = race_pale_orc
  140. NOT = { has_global_flag = bm_tides_of_darkness }
  141. }
  142. trait = race_draenei # Always for now!
  143. }
  144. }
  145. death = {
  146. death_reason = death_missing
  147. }
  148. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement