Difference between revisions of "SetRaceFlag - Race"
Jump to navigation
Jump to search
no edit summary
imported>Seigneur Voland (Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' Race Script Sets the specified race flag. (This function requires SKSE) == Syntax == ...") |
imported>Seigneur Voland |
||
Line 20: | Line 20: | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
; Let the Player activate cows so he can talk to them | ; Let the Player activate cows so he can talk to them | ||
CowRace. | CowRace.SetRaceFlag(0x00200000) | ||
; Makes this bandit and his race considered as Child | ; Makes this bandit and his race considered as Child | ||
BanditRef.GetRace(). | BanditRef.GetRace().SetRaceFlag(2) | ||
</source> | </source> | ||