DecodeString

From Multi Theft Auto: Wiki
Revision as of 23:53, 1 July 2018 by Myonlake (talk | contribs)
Jump to navigation Jump to search

This function decodes an encoded string using the specified algorithm. The counterpart of this function is encodeString.

Syntax

string decodeString ( string algorithm, string input, table options )  

Required Arguments

  • algorithm: The algorithm to use.
  • input: The input to decode.
  • options: A table with options and other neccessary data for the algorithm, as detailed below.

Options for each algorithm

Returns

Returns the decoded string if successful, false otherwise.

Example

Accessories-text-editor.png Script Example Missing Function DecodeString needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.
-- TODO


See Also