GetItemMaxCharge - ObjectReference
SKSE Member of: ObjectReference Script
This Function will Return the maximum charge of an ObjectReference.
SyntaxEdit
float Function GetItemMaxCharge() native
Return ValueEdit
Returns the maximum charge of an ObjectReference.
ExamplesEdit
ObjectReference Property weaponRef Auto
String name
Float maxcharge
Function weaponmaxcharge()
maxcharge = weaponRef.GetItemMaxCharge()
name = weaponRef.GetBaseObject().GetName()
Debug.Trace(name + "'s maximum charge is " + maxcharge)
EndFunction
- Do note that this will only work on a weapon that is currently loaded and not in a container.
NotesEdit
- This function can only be run on items outside of containers, as when they are put into containers member functions cannot be called on them.