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

GetActorAlerted

(Difference between revisions)
Return to current revision
  1. +
    Retrieves the alerted state of an [wiki]Actor[/wiki].
    [h="2"] Declaration [/h]
    <code cpp>
    VAULTSCRIPT vaultmp::State (*GetActorAlerted)(vaultmp::ID);
    native Bool:GetActorAlerted(ID);
    </code>
    [h="2"] Parameters [/h]
    [b][wiki="ID"]vaultmp::ID[/wiki][/b] - the ID of the [wiki]Actor[/wiki]
    [h="2"] Return value [/h]
    Returns a [wiki="State"]vaultmp::State[/wiki] containing the alerted state ([i]true[/i] - the [wiki]Actor[/wiki] is alerted, [i]false[/i] - the [wiki]Actor[/wiki] is not alerted).
    [h="2"] Usage example (C++) [/h]
    <code cpp>
    vaultmp::State state;
    state = GetActorAlerted(actor);
    </code>
    [category]VaultMP interface[/category]
    [category]Scripting functions[/category]
    [category]Actor functions[/category]