This site has been archived and made available for preservation purposes. No edits can be made.

GetActorBaseValue

Retrieves the current base value of an Actor value.

[top]Declaration

Code cpp:
VAULTSCRIPT vaultmp::Value (*GetActorBaseValue)(vaultmp::ID, vaultmp::Index);
native Float:GetActorBaseValue(ID, index);

[top]Parameters

vaultmp::ID - the ID of the Actor
vaultmp::Index - the index of the Actor value

[top]Return value

Returns a vaultmp::Value containing the base value.

[top]Usage example (C++)

Code cpp:
vaultmp::Value value;
value = GetActorBaseValue(actor, index);

[top]Related pages