OnPlayerModArmorWeapon - Actor

Member of: Actor Script

Event sent to the player when they modify armor or weapons.

SyntaxEdit

Event OnPlayerModArmorWeapon(Form akBaseObject, ObjectMod akModBaseObject)

ParametersEdit

  • akBaseObject: the base object item created after modification
  • akModBaseObject: the base object used to do the modification

ExamplesEdit

; Event is sent to the player
Event OnPlayerModArmorWeapon(Form akBaseObject, ObjectMod akModBaseObject)
  Debug.Trace(akBaseObject+ " created after using " + akModBaseObject)
endEvent

See AlsoEdit