Lua:encodeFunction

From Cheat Engine
Revision as of 16:00, 10 February 2021 by Dark Byte (talk | contribs) (Undo revision 7035 by Tuzi521 (talk))
Jump to navigation Jump to search

function encodeFunction(function, protect OPTIONAL) : string

Converts a given function into an encoded string that you can pass to decodeFunction.

Function Parameters

Parameter Type Description
function function The function to encode

Examples

local function myCoolFunction(str) print(str) end
print(encodeFunction(myCoolFunction))
local function myCoolFunction(str) print(str) end
local encodedFunc = encodeFunction(myCoolFunction)
local decodedFunc = decodeFunction(encodedFunc)
decodedFunc('I have the power!')

Main Pages

Core Lua documentation entry points

Lua
Script Engine

Related Functions