Background for Skyrim SE
Member of the Quest script
AliasfunctionGetNthAlias(intindex)Native

Description

Wiki Description

Assuming the code below is a quest script getting it's own aliases.

int idx  = self.GetNumAliases()
while idx > 0
    idx -= 1
    Alias nthAlias = self.GetNthAlias(idx) as Alias

    ; LocationAlias or ReferenceAlias
    if nthAlias
        ; do stuff
    endIf
endWhile

Documentation Comment

returns the specified alias associated with the queest


Caveats


Parameters

intindex


Examples

No human-generated examples found for this function.

Auto-Generated Example

int myInt__index

Alias returnedValue = myQuest__toCallFunctionOn.GetNthAlias(myInt__index)

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.