This script is attached to my player. I know my Perk works and I know the OnItemAdded() works. However, I can't seem to pass the specific perk I want to add to the script. I have a feeling I'm doing something with the property incorrectly. Guidance! I need guidance, Thanks in advance,
Scriptname MyScript extends ObjectReference Perk Property MyPerk autoEvent OnItemAdded(Form akBaseItem, int aiItemCount, ObjectReference akItemReference, ObjectReference akSourceContainer) Actor player=Game.GetPlayer() If(akBaseItem=="MyItem") player.AddPerk(MyPerk) EndIf endEventEvent OnItemRemoved(Form akBaseItem, int aiItemCount, ObjectReference akItemReference, ObjectReference akSourceContainer) Actor player = Game.GetPlayer() If (akBaseItem=="MyItem") player.RemovePerk(MyPerk) EndIf endEvent
Any help at all would be greatly appreciated.

