Background for Skyrim SE
Member of the Race script
boolfunctionIsRaceFlagSet(intn)Native

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 !")
endif

Auto-Generated Example

int myInt__n

bool returnedValue = myRace__toCallFunctionOn.IsRaceFlagSet(myInt__n)

Related Pages


Additional References

View this function’s page on the Skyrim Creation Kit Wiki

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.