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

OnActorValueChange

(Difference between revisions)
Return to current revision
  1. +
    Gets called when an [wiki]Actor[/wiki]'s value has changed.
    [h="2"] Declaration [/h]
    <code cpp>
    VAULTSCRIPT void OnActorValueChange(vaultmp::ID, vaultmp::Index, vaultmp::Value);
    forward OnActorValueChange(ID, index, Float:value);
    </code>
    [h="2"] Parameters [/h]
    [b][wiki="ID"]vaultmp::ID[/wiki][/b] - the ID of the [wiki]Actor[/wiki]
    [b][wiki="Index"]vaultmp::Index[/wiki][/b] - the index of the [wiki]Actor value[/wiki]
    [b][wiki="Value"]vaultmp::Value[/wiki][/b] - the new value
    [h="2"] Return value [/h]
    None.
    [h="2"] Usage example (C++) [/h]
    <code cpp>
    void VAULTSCRIPT OnActorValueChange(vaultmp::ID actor, vaultmp::Index index, vaultmp::Value value)
    {
    std::string value_name;
    value_name = ValueToString(index);
    // value_name now contains the string representation of the actor value
    }
    </code>
    [h="2"] Related pages [/h]
    [list][*][wiki]OnActorBaseValueChange[/wiki]
    [*][wiki]ValueToString[/wiki]
    [/LIST]
    [category]VaultMP interface[/category]
    [category]Scripting callbacks[/category]