Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Scriptname DrowRaceController extends Quest
- Race Property DarkDrowRace Auto
- Race Property DarkDrowRaceVampire Auto
- Race Property DarkDrowChildRace Auto
- ; Race Compatibility
- FormList Property PlayableRaceList Auto
- FormList Property PlayableVampireList Auto
- FormList Property RacesElf Auto
- FormList Property HeadPartsAllRacesMinusBeast Auto
- FormList Property HeadPartsHumanVampires Auto
- FormList Property HeadPartsHumanoidVampire Auto
- FormList Property HeadPartsHumansandVampires Auto
- Event OnInit()
- ; Compatibility lists
- RacesElf.AddForm(DarkDrowRace)
- RacesElf.AddForm(DarkDrowChildRace)
- HeadPartsHumanoidVampire.AddForm(DarkDrowRaceVampire)
- HeadPartsHumanVampires.AddForm(DarkDrowRaceVampire)
- HeadPartsHumansandVampires.AddForm(DarkDrowRace)
- HeadPartsHumansandVampires.AddForm(DarkDrowRaceVampire)
- HeadPartsHumansandVampires.AddForm(DarkDrowChildRace)
- ; PlayableRaceList and PlayableVampireList have to be the same size
- ; Even if there is no vampire equivalent, set it to be the same race
- PlayableRaceList.AddForm(DarkDrowRace)
- PlayableRaceList.AddForm(DarkDrowChildRace)
- PlayableVampireList.AddForm(PlayableVampireList)
- PlayableVampireList.AddForm(DarkDrowChildRace)
- ; These lists actually add most of the head parts
- HeadPartsAllRacesMinusBeast.AddForm(DarkDrowRace)
- HeadPartsAllRacesMinusBeast.AddForm(DarkDrowChildRace)
- EndEvent
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement