Difference between revisions of "Tutorial:Race Specific Start Spells"
Jump to navigation
Jump to search
Tutorial:Race Specific Start Spells (edit)
Revision as of 15:43, 20 December 2009
, 15:43, 20 December 2009no edit summary
imported>Shadowndacorner (A tutorial on making racially-specific starting spells/ items.) |
imported>Shadowndacorner |
||
Line 2: | Line 2: | ||
Awhile back, I was trying to make a new race that had it's own set of starting spells. After looking around a bit, I noticed there really wasn't one. So, after 3 hours of typing, this is the tutorial on creating player starting spells depending on what race the player is. It will add the spell if the script hasn't run yet, meaning that you don't have to start a new game. | Awhile back, I was trying to make a new race that had it's own set of starting spells. After looking around a bit, I noticed there really wasn't one. So, after 3 hours of typing, this is the tutorial on creating player starting spells depending on what race the player is. It will add the spell if the script hasn't run yet, meaning that you don't have to start a new game. | ||
__TOC__ | __TOC__ | ||
== | == How to do it == | ||
There are a few ways to do it, the simplest is in the race menu (select your race and drag the spell to "Specials"), but the following script allows an extra degree of control, such as items, special quests, and alternate starting places (using "MoveTo [XMarker/Item]"): | |||
scn AAPlayerScript | scn AAPlayerScript | ||
Line 34: | Line 35: | ||
This whole part is basically saying: "If the script hasn't run yet and if the player is an Argonian then add AACustomRaceSpell01 to the player's spell list." You could change that to say "VampireRace" or you could make it Class/ Birthsign specific (of course that would be much easier simply putting that in in the Class/ Birthsign dialogue box). | This whole part is basically saying: "If the script hasn't run yet and if the player is an Argonian then add AACustomRaceSpell01 to the player's spell list." You could change that to say "VampireRace" or you could make it Class/ Birthsign specific (of course that would be much easier simply putting that in in the Class/ Birthsign dialogue box). | ||
To enforce the script, go into NPCs and find "Player". Click on the drop down box next to the word "Script". Select the script we just made (if you copy/pasted it, it will be AAPlayerScript). Hit "OK" and you're done. | |||
== Closing == | == Closing == | ||
I figured this method out on my own, so I don't know if this is how Bethesda did the spells for official races (such as the Imperial's "Voice of the Emperor" spell). This can be used for many things. Instead of using addspell, you could use additem and add some kind of special armor, weapon, or just make that race rich. You can, of course, add multiple spells and multiple items. | I figured this method out on my own, so I don't know if this is how Bethesda did the spells for official races (such as the Imperial's "Voice of the Emperor" spell). This can be used for many things. Instead of using addspell, you could use additem and add some kind of special armor, weapon, or just make that race rich. You can, of course, add multiple spells and multiple items. |