SPAWNOFTHEFLAMES Posted March 14, 2012 Share Posted March 14, 2012 I really want to be able make my own quests that allow you to become a werewolf or a vampire or a custom race of my choosing. I've looked on creationkit.com and its quite sparse when it comes to changing races. Basically I want to script something along the lines of: on activation of object if player race = nordchange player race to nordvampireif player race = redguardchange player race to redguardvampireif player race = redguardvampiredo nothing.etc I've not got my trial script on this computer but I will add it later. Could anyone give me any tips or good places to look to find the answers? My problem with creationkit.com is it isn't very good at giving examples. Any help would be hugely appreciated. Link to comment Share on other sites More sharing options...
SPAWNOFTHEFLAMES Posted March 14, 2012 Author Share Posted March 14, 2012 I really want to be able make my own quests that allow you to become a werewolf or a vampire or a custom race of my choosing. I've looked on creationkit.com and its quite sparse when it comes to changing races. Basically I want to script something along the lines of: on activation of object if player race = nordchange player race to nordvampireif player race = redguardchange player race to redguardvampireif player race = redguardvampiredo nothing.etc I've not got my trial script on this computer but I will add it later. Could anyone give me any tips or good places to look to find the answers? My problem with creationkit.com is it isn't very good at giving examples. Any help would be hugely appreciated. Link to comment Share on other sites More sharing options...
SPAWNOFTHEFLAMES Posted March 14, 2012 Author Share Posted March 14, 2012 Saved space for me to put in my sample script later Link to comment Share on other sites More sharing options...
EnaiSiaion Posted March 14, 2012 Share Posted March 14, 2012 (edited) Event OnActivate(akOpener) If akOpener.GetRace() == Frog ;frog akOpener.SetRace(FrogVampire) Else ;no frog EndIf EndEvent ...doesn't work? Ps Don't forget to check for the global variables PlayerIsVampire and PlayerIsWerewolf so you don't try to morph someone who is already morphed. Edited March 14, 2012 by EnaiSiaion Link to comment Share on other sites More sharing options...
Recommended Posts