Advertisement
Bagserk

Untitled

Jan 5th, 2013
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. Scriptname AddBerserkVoicesScript extends Quest
  2.  
  3. VoiceType Property MaleGuts Auto
  4.  
  5. VoiceType Property FemaleCasca Auto
  6.  
  7. VoiceType Property FemaleSchierke Auto
  8.  
  9. FormList Property VoicePowerVoicesListNoDraugr Auto
  10.  
  11. FormList Property VoicePowerVoicesListwithTsun Auto
  12.  
  13. FormList Property VoicePowerVoicesList Auto
  14.  
  15. FormList Property VoicesFollowerRough Auto
  16.  
  17. FormList Property VoicesCommonCombatant Auto
  18.  
  19. FormList Property VoicesPlayer Auto
  20.  
  21. FormList Property VoicesCommonAdult Auto
  22.  
  23. FormList Property DefaultNPCVoiceTypes Auto
  24.  
  25. FormList Property VoicesNPCs Auto
  26.  
  27. FormList Property VoicesFollowerNeutral Auto
  28.  
  29. function addvoicetypesberserk()
  30. if !VoicePowerVoicesListNoDraugr.HasForm(MaleGuts)
  31. VoicePowerVoicesListNoDraugr.AddForm(MaleGuts)
  32. endif
  33. if !VoicePowerVoicesListNoDraugr.HasForm(FemaleCasca)
  34. VoicePowerVoicesListNoDraugr.AddForm(FemaleCasca)
  35. endif
  36. if !VoicePowerVoicesListNoDraugr.HasForm(FemaleSchierke)
  37. VoicePowerVoicesListNoDraugr.AddForm(FemaleSchierke)
  38. endif
  39. if !VoicePowerVoicesListWithTsun.HasForm(MaleGuts)
  40. VoicePowerVoicesListWithTsun.AddForm(MaleGuts)
  41. endif
  42. if !VoicePowerVoicesListWithTsun.HasForm(FemaleCasca)
  43. VoicePowerVoicesListWithTsun.AddForm(FemaleCasca)
  44. endif
  45. if !VoicePowerVoicesList.HasForm(MaleGuts)
  46. VoicePowerVoicesList.AddForm(MaleGuts)
  47. endif
  48. if !VoicePowerVoicesList.HasForm(FemaleCasca)
  49. VoicePowerVoicesList.AddForm(FemaleCasca)
  50. endif
  51. if !VoicePowerVoicesList.HasForm(FemaleSchierke)
  52. VoicePowerVoicesList.AddForm(FemaleSchierke)
  53. endif
  54. if !VoicesFollowerRough.HasForm(MaleGuts)
  55. VoicesFollowerRough.AddForm(MaleGuts)
  56. endif
  57. if !VoicesFollowerRough.HasForm(FemaleCasca)
  58. VoicesFollowerRough.AddForm(FemaleCasca)
  59. endif
  60. if !VoicesFollowerNeutral.HasForm(FemaleSchierke)
  61. VoicesFollowerNeutral.AddForm(FemaleSchierke)
  62. endif
  63. if !VoicesCommonCombatant.HasForm(MaleGuts)
  64. VoicesCommonCombatant.AddForm(MaleGuts)
  65. endif
  66. if !VoicesCommonCombatant.HasForm(FemaleCasca)
  67. VoicesCommonCombatant.AddForm(FemaleCasca)
  68. endif
  69. if !VoicesCommonCombatant.HasForm(FemaleSchierke)
  70. VoicesCommonCombatant.AddForm(FemaleSchierke)
  71. endif
  72. if !VoicesPlayer.HasForm(MaleGuts)
  73. VoicesPlayer.AddForm(MaleGuts)
  74. endif
  75. if !VoicesPlayer.HasForm(FemaleCasca)
  76. VoicesPlayer.AddForm(FemaleCasca)
  77. endif
  78. if !VoicesPlayer.HasForm(FemaleSchierke)
  79. VoicesPlayer.AddForm(FemaleSchierke)
  80. endif
  81. if !VoicesCommonAdult.HasForm(MaleGuts)
  82. VoicesCommonAdult.AddForm(MaleGuts)
  83. endif
  84. if !VoicesCommonAdult.HasForm(FemaleCasca)
  85. VoicesCommonAdult.AddForm(FemaleCasca)
  86. endif
  87. if !VoicesCommonAdult.HasForm(FemaleSchierke)
  88. VoicesCommonAdult.AddForm(FemaleSchierke)
  89. endif
  90. if !DefaultNPCVoiceTypes.HasForm(MaleGuts)
  91. DefaultNPCVoiceTypes.AddForm(MaleGuts)
  92. endif
  93. if !DefaultNPCVoiceTypes.HasForm(FemaleCasca)
  94. DefaultNPCVoiceTypes.AddForm(FemaleCasca)
  95. endif
  96. if !DefaultNPCVoiceTypes.HasForm(FemaleSchierke)
  97. DefaultNPCVoiceTypes.AddForm(FemaleSchierke)
  98. endif
  99. if !VoicesNPCs.HasForm(MaleGuts)
  100. VoicesNPCs.AddForm(MaleGuts)
  101. endif
  102. if !VoicesNPCs.HasForm(FemaleCasca)
  103. VoicesNPCs.AddForm(FemaleCasca)
  104. endif
  105. if VoicesNPCs.HasForm(FemaleSchierke)
  106. VoicesNPCs.AddForm(FemaleSchierke)
  107. endif
  108. endfunction
  109.  
  110. Event OnInit()
  111. addvoicetypesberserk()
  112. EndEvent
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement