Advertisement
Scriv07

PapyrusFO4

May 10th, 2016
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. Scriptname PapyrusFO4 extends ReferenceAlias
  2. {Attaches to a quest ReferenceAlias filled with the player in the CK}
  3.  
  4. MiscObject Property Item Auto
  5. {Dont forget to fill this in the script property window.}
  6.  
  7. Event OnItemEquipped(Form akBaseObject, ObjectReference akReference)
  8. ; If the equipped base form is the same as the 'Item' property, then trace a message.
  9. If ( (akBaseObject as MiscObject) == Item)
  10. Debug.Trace("You just equipped the " + Item + " item.")
  11. EndIf
  12. EndEvent
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement