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

OnActorBaseValueChange

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