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

ValueToString

(Difference between revisions)
Return to current revision
  1. -
    Retrieves the string representation of an [[Actor value]].

    == Declaration ==
    <code cpp>
    VAULTSCRIPT std::string (*ValueToString)(vaultmp::Index);
    native ValueToString(index, value{});
    </code>
    == Parameters ==

    '''[[Index|vaultmp::Index]]''' - the index of the [[Actor value]]

    '''value''' (PAWN only) - an array large enough to hold at least 64 characters

    == Return value ==

    The C++ version returns a std::string containing the string representation of the actor value. The PAWN version has no return value.

    == Usage example (C++) ==

    <code cpp>
    std::string value;
    value = ValueToString(index);
    </code>

    == Usage example (PAWN) ==

    <code c>
    new value{64};
    ValueToString(index, value);
    </code>