4
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 lines
942 B

Scriptname _00E_Game_CalculateClassSC extends ObjectReference
;=====================================================================================
; EVENTS
;=====================================================================================
Event OnTriggerEnter(ObjectReference akActionRef)
if akActionRef == PlayerREF
iMemoryPointsOnEnter = TalentPoints.GetValueInt()
EndIf
EndEvent
Event OnTriggerLeave(ObjectReference akActionRef)
if akActionRef == PlayerREF
Player.GetPlayerClass()
EndIf
EndEvent
;=====================================================================================
; PROPERTIES
;=====================================================================================
int iMemoryPointsOnEnter
Actor Property PlayerREF Auto
GlobalVariable Property TalentPoints Auto
_00E_Game_SkillmenuSC Property Player Auto