Difference between revisions of "AddCreatureToLeveledList"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Geckbot
m (Robot: Automated text replacement (-\[\[Category:(.*?)\(GECK 1.0\)\]\] +Category:\1(GECK 1.1)))
imported>Ez0n3
Line 1: Line 1:
=='''Description'''==
{{Function
 
|origin = GECK1
Adds a form to a [[LeveledCreature]] list. This should be used in the RARE case where we want to add an item to a LeveledCreature list that already exists in the ESM. It's primary use it for modifying lists from the base game in downloadable content. In most cases you should add items to form lists in the editor object windows. This is for those special cases where you want to alter the contents of a list at runtime or want to change it without putting it in your ESP/ESM file. Once altered using this function, it will persist in the save game data.
|summary = Adds a form to a [[LeveledCreature]] list. This should be used in the RARE case where we want to add an item to a LeveledCreature list that already exists in the ESM. It's primary use it for modifying lists from the base game in downloadable content. In most cases you should add items to form lists in the editor object windows. This is for those special cases where you want to alter the contents of a list at runtime or want to change it without putting it in your ESP/ESM file. Once altered using this function, it will persist in the save game data. (parameters are Base Objects)
 
It can '''not''' be undone.
It can '''not''' be undone.
 
|name = AddCreatureToLeveledList
=='''Syntax'''==
|returnType = int
 
|arguments =  
AddCreatureToLeveledList ''LeveledCreatureID CreatureOrLeveledCreatureToAddID iLevel''
  {{FunctionArgument
 
  |Name = LeveledCreatureID
(parameters are Base Objects)
  }}{{FunctionArgument
 
  |Name = CreatureOrLeveledCreatureToAddID
=='''Examples'''==
  }}{{FunctionArgument
 
  |Name = iLevel
  AddCreatureToLeveledList EncRobot VarNewRobots 20
  |Type = int
 
  }}
  |example = AddCreatureToLeveledList EncRobot VarNewRobots 20
Leveled Actors based on the EncRobot LeveledCreature list now pull a Creature from VarNewRobots list at encounter level 20.
Leveled Actors based on the EncRobot LeveledCreature list now pull a Creature from VarNewRobots list at encounter level 20.
}}


=='''See Also'''==
==See Also==
*[[AddFormToFormList]]
*[[AddFormToFormList]]
*[[AddNPCToLeveledList]]
*[[AddNPCToLeveledList]]
*[[AddItemToLeveledList]]
*[[AddItemToLeveledList]]


[[Category:Functions]]
[[Category:Functions]]

Revision as of 23:40, 12 January 2011

< [[::Category:Functions|Category:Functions]]

A function included in the GECK version 1.1.0.36.

Description

Adds a form to a LeveledCreature list. This should be used in the RARE case where we want to add an item to a LeveledCreature list that already exists in the ESM. It's primary use it for modifying lists from the base game in downloadable content. In most cases you should add items to form lists in the editor object windows. This is for those special cases where you want to alter the contents of a list at runtime or want to change it without putting it in your ESP/ESM file. Once altered using this function, it will persist in the save game data. (parameters are Base Objects)

It can not be undone.

Syntax

[help]
(int) AddCreatureToLeveledList LeveledCreatureID CreatureOrLeveledCreatureToAddID iLevel:int

Example

AddCreatureToLeveledList EncRobot VarNewRobots 20

Leveled Actors based on the EncRobot LeveledCreature list now pull a Creature from VarNewRobots list at encounter level 20.

See Also