18 lines
407 B
Plaintext
18 lines
407 B
Plaintext
Scriptname HealthBarManager Hidden
|
|
|
|
function Show(Actor akActor) global
|
|
int handle = ModEvent.Create("Enderal_ShowActorHealth")
|
|
if handle
|
|
ModEvent.PushForm(handle, akActor)
|
|
ModEvent.Send(handle)
|
|
endIf
|
|
endfunction
|
|
|
|
function Hide(Actor akActor) global
|
|
int handle = ModEvent.Create("Enderal_HideActorHealth")
|
|
if handle
|
|
ModEvent.PushForm(handle, akActor)
|
|
ModEvent.Send(handle)
|
|
endIf
|
|
endfunction
|