Difference between revisions of "LeveledActor Script"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Henning
(Created page with 'Category:Scripting Category:Papyrus Category:Script Objects '''Extends:''' Form Script Script for the manipulation of leveled character base objects. == Defini…')
 
imported>CraftySentinel
(Added New SKSE 1.7.0 Functions)
 
(2 intermediate revisions by 2 users not shown)
Line 14: Line 14:
== Properties ==
== Properties ==
None
None


== Global Functions ==
== Global Functions ==
None
None


== Member Functions ==
== Member Functions ==
*Function [[AddForm - LeveledActor|AddForm]](Form apForm, int auiLevel)
 
**Adds the given form to the leveled list under the given level.
:'''[[AddForm - LeveledActor|AddForm]](Form ''apForm'', Int ''auiLevel'')'''
*Function [[Revert - LeveledActor|Revert]]()
:*Adds the given form to the leveled list under the given level.
**Removes all script added forms from the leveled list.
 
:'''[[Revert - LeveledActor|Revert]]()'''
:*Removes all script added forms from the leveled list.
 
 
== SKSE Member Functions ==
 
:'''Int [[GetNumForms - LeveledActor|GetNumForms]]()'''
:*Returns the number of Forms within the leveled list.
 
:'''Form [[GetNthForm - LeveledActor|GetNthForm]](Int ''n'')'''
:*Returns the form at the specified index.
 
:'''Int [[GetNthLevel - LeveledActor|GetNthLevel]](Int ''n'')'''
:*Returns the List Level for the Form at the specified index
 
:'''[[SetNthLevel - LeveledActor|SetNthLevel]](Int ''n'', Int ''level'')'''
:*Sets the list Level for the Form at the specified index to the specified amount.
 
:'''Int [[GetNthCount - LeveledActor|GetNthCount]](Int ''n'')'''
:*Returns the count for the Form at the specified index.
 
:'''Int [[SetNthCount - LeveledActor|SetNthCount]](Int ''n'', Int ''count'')'''
:*Sets the count for the Form at the specified index
 


== Events ==
== Events ==
None
None

Latest revision as of 23:51, 2 February 2014


Extends: Form Script

Script for the manipulation of leveled character base objects.

Definition[edit | edit source]

ScriptName LeveledActor extends Form

Properties[edit | edit source]

None


Global Functions[edit | edit source]

None


Member Functions[edit | edit source]

AddForm(Form apForm, Int auiLevel)
  • Adds the given form to the leveled list under the given level.
Revert()
  • Removes all script added forms from the leveled list.


SKSE Member Functions[edit | edit source]

Int GetNumForms()
  • Returns the number of Forms within the leveled list.
Form GetNthForm(Int n)
  • Returns the form at the specified index.
Int GetNthLevel(Int n)
  • Returns the List Level for the Form at the specified index
SetNthLevel(Int n, Int level)
  • Sets the list Level for the Form at the specified index to the specified amount.
Int GetNthCount(Int n)
  • Returns the count for the Form at the specified index.
Int SetNthCount(Int n, Int count)
  • Sets the count for the Form at the specified index


Events[edit | edit source]

None