Difference between revisions of "Armor Script"
imported>Rhavlovick m (1 revision: Clobber re-import by Henning) |
imported>Fg109 (Added SKSE Member Functions) |
||
Line 1: | Line 1: | ||
== SKSE Member Functions == | |||
[[ | '''Int Function [[GetArmorRating - Armor|GetArmorRating]]()''' | ||
*Returns the armor rating for this armor. | |||
''' | '''Int Function [[GetArmorRating - Armor|GetAR]]()''' | ||
*Alias for GetArmorRating(). | |||
'''Function [[SetArmorRating - Armor|SetArmorRating]](int armorRating)''' | |||
*Sets the armor rating for this armor to the specified value. | |||
'''Function [[SetArmorRating - Armor|SetAR]](int armorRating)''' | |||
*Alias for SetArmorRating(). | |||
'''Function [[ModArmorRating - Armor|ModArmorRating]](int modBy)''' | |||
*Modifies the armor rating for this armor by the specified amount. | |||
'''Function [[ModArmorRating - Armor|ModAR]](int modBy)''' | |||
*Alias for ModArmorRating(). | |||
'''String Function [[GetModelPath - Armor|GetModelPath]](bool bFemalePath)''' | |||
*Returns the file path for the nif file representing the world model of the armor. | |||
'''Function [[SetModelPath - Armor|SetModelPath]](string path, bool bFemalePath)''' | |||
*Sets the file path for the nif file representing the world model of the armor to the specified path. | |||
'''String Function [[GetIconPath - Armor|GetIconPath]](bool bFemalePath)''' | |||
*Returns the file path for the nif file representing the icon for the armor in the inventory. | |||
'''Function [[SetIconPath - Armor|SetIconPath]](string path, bool bFemalePath)''' | |||
*Sets the file path for the nif file representing the icon for the armor in the inventory to the specified path. | |||
'''String Function [[GetMessageIconPath - Armor|GetMessageIconPath]](bool bFemalePath)''' | |||
*Returns the file path for the nif file representing the message icon for the armor. | |||
'''Function [[SetMessageIconPath - Armor|SetMessageIconPath]](string path, bool bFemalePath)''' | |||
*Sets the file path for the nif file representing the message icon for the armor to the specified path. | |||
'''Int Function [[GetWeightClass - Armor|GetWeightClass]]()''' | |||
*Returns the weight class of the armor. | |||
'''Function [[SetWeightClass - Armor|SetWeightClass]](int weightClass)''' | |||
*Sets the weight class of the armor to the specified weight class. | |||
'''Bool Function [[IsLightArmor - Armor|IsLightArmor]]()''' | |||
*Is this light armor? | |||
'''Bool Function [[IsHeavyArmor - Armor|IsHeavyArmor]]()''' | |||
*Is this heavy armor? | |||
'''Bool Function [[IsClothing - Armor|IsClothing]]()''' | |||
*Is this clothing? | |||
'''Bool Function [[IsBoots - Armor|IsBoots]]()''' | |||
*Are these boots? | |||
'''Bool Function [[IsCuirass - Armor|IsCuirass]]()''' | |||
*Is this a cuirass? | |||
'''Bool Function [[IsGauntlets - Armor|IsGauntlets]]()''' | |||
*Are these gauntlets? | |||
'''Bool Function [[IsHelmet - Armor|IsHelmet]]()''' | |||
*Is this a helmet? | |||
'''Bool Function [[IsShield - Armor|IsShield]]()''' | |||
*Is this a shield? | |||
'''Bool Function [[IsJewelry - Armor|IsJewelry]]()''' | |||
*Is this a piece of jewelry? | |||
'''Bool Function [[IsClothingHead - Armor|IsClothingHead]]()''' | |||
*Is this a hat/circlet? | |||
'''Bool Function [[IsClothingBody - Armor|IsClothingBody]]()''' | |||
*Is this a shirt/pants/dress? | |||
'''Bool Function [[IsClothingFeet - Armor|IsClothingFeet]]()''' | |||
*Are these shoes? | |||
'''Bool Function [[IsClothingHands - Armor|IsClothingHands]]()''' | |||
*Are these gloves? | |||
'''Bool Function [[IsClothingRing - Armor|IsClothingRing]]()''' | |||
*Is this a ring? | |||
'''Bool Function [[IsClothingRich - Armor|IsClothingRich]]()''' | |||
*Is this rich clothing? | |||
'''Bool Function [[IsClothingPoor - Armor|IsClothingPoor]]()''' | |||
*Is this poor clothing? | |||
'''Int Function [[GetSlotMask - Armor|GetSlotMask]]()''' | |||
*Returns the slot mask for the armor. | |||
'''Function [[SetSlotMask - Armor|SetSlotMask]](int slotMask)''' | |||
*Sets the slot mask for the armor. | |||
'''Int Function [[AddSlotToMask - Armor|AddSlotToMask]](int slotMask)''' | |||
*Adds the specified slotmask to the armor and returns the new slot mask for the armor. | |||
'''Int Function [[RemoveSlotFromMask - Armor|RemoveSlotFromMask]](int slotMask)''' | |||
*Removes the specified slotmask from the armor and returns the new slot mask for the armor. | |||
'''Int Function [[GetMaskForSlot- Armor|GetMaskForSlot]](int slot)''' | |||
*Returns the slotmask for a single slot. |
Revision as of 10:17, 10 May 2012
SKSE Member Functions
Int Function GetArmorRating()
- Returns the armor rating for this armor.
Int Function GetAR()
- Alias for GetArmorRating().
Function SetArmorRating(int armorRating)
- Sets the armor rating for this armor to the specified value.
Function SetAR(int armorRating)
- Alias for SetArmorRating().
Function ModArmorRating(int modBy)
- Modifies the armor rating for this armor by the specified amount.
Function ModAR(int modBy)
- Alias for ModArmorRating().
String Function GetModelPath(bool bFemalePath)
- Returns the file path for the nif file representing the world model of the armor.
Function SetModelPath(string path, bool bFemalePath)
- Sets the file path for the nif file representing the world model of the armor to the specified path.
String Function GetIconPath(bool bFemalePath)
- Returns the file path for the nif file representing the icon for the armor in the inventory.
Function SetIconPath(string path, bool bFemalePath)
- Sets the file path for the nif file representing the icon for the armor in the inventory to the specified path.
String Function GetMessageIconPath(bool bFemalePath)
- Returns the file path for the nif file representing the message icon for the armor.
Function SetMessageIconPath(string path, bool bFemalePath)
- Sets the file path for the nif file representing the message icon for the armor to the specified path.
Int Function GetWeightClass()
- Returns the weight class of the armor.
Function SetWeightClass(int weightClass)
- Sets the weight class of the armor to the specified weight class.
Bool Function IsLightArmor()
- Is this light armor?
Bool Function IsHeavyArmor()
- Is this heavy armor?
Bool Function IsClothing()
- Is this clothing?
Bool Function IsBoots()
- Are these boots?
Bool Function IsCuirass()
- Is this a cuirass?
Bool Function IsGauntlets()
- Are these gauntlets?
Bool Function IsHelmet()
- Is this a helmet?
Bool Function IsShield()
- Is this a shield?
Bool Function IsJewelry()
- Is this a piece of jewelry?
Bool Function IsClothingHead()
- Is this a hat/circlet?
Bool Function IsClothingBody()
- Is this a shirt/pants/dress?
Bool Function IsClothingFeet()
- Are these shoes?
Bool Function IsClothingHands()
- Are these gloves?
Bool Function IsClothingRing()
- Is this a ring?
Bool Function IsClothingRich()
- Is this rich clothing?
Bool Function IsClothingPoor()
- Is this poor clothing?
Int Function GetSlotMask()
- Returns the slot mask for the armor.
Function SetSlotMask(int slotMask)
- Sets the slot mask for the armor.
Int Function AddSlotToMask(int slotMask)
- Adds the specified slotmask to the armor and returns the new slot mask for the armor.
Int Function RemoveSlotFromMask(int slotMask)
- Removes the specified slotmask from the armor and returns the new slot mask for the armor.
Int Function GetMaskForSlot(int slot)
- Returns the slotmask for a single slot.