8 lines
265 B
Plaintext
8 lines
265 B
Plaintext
|
Scriptname WeaponStyleSpearScript extends ObjectReference
|
||
|
|
||
|
Event OnEquipped(Actor akActor)
|
||
|
akActor.SetAnimationVariableInt("isOHSpearEquipped", 1)
|
||
|
EndEvent
|
||
|
Event OnUnequipped(Actor akActor)
|
||
|
akActor.SetAnimationVariableInt("isOHSpearEquipped", 0)
|
||
|
EndEvent
|