- Found in:
- SKSE
Description
Wiki Description
Returns whether the specified race flag is set. (This function requires SKSE)
Documentation Comment
returns whether the specified race flag is set
Caveats
CK Wiki - Notes
None
Parameters
intn
CK Wiki Description
the Nth Race Flag
Examples
Bool IsPlayable = ImperialRace.IsRaceFlagSet(0x00000001) ; IsPlayable = true
; Can Player talk to cows ?
if ( !CowRace.IsRaceFlagSet(21) )
Notification("Cows can not talk !")
endifAuto-Generated Example
int myInt__n
bool returnedValue = myRace__toCallFunctionOn.IsRaceFlagSet(myInt__n)Related Pages
- Race
- Race.SetRaceFlag(...)
- Race.ClearRaceFlag(...)
- List of Race Flags
