Difference between revisions of "Lua:onAutoGuess"
Jump to navigation
Jump to search
(Created page with ''''function''' onAutoGuess(''function'') Registers an function to be called whenever autoguess is used to predict a variable type function declaration: function (address, gue…') |
m (moved onAutoGuess to Lua:onAutoGuess) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | [[Category:Lua]] | ||
'''function''' onAutoGuess(''function'') | '''function''' onAutoGuess(''function'') | ||
Line 20: | Line 21: | ||
|} | |} | ||
− | + | {{LuaSeeAlso}} | |
− |
Latest revision as of 00:14, 25 January 2018
function onAutoGuess(function)
Registers an function to be called whenever autoguess is used to predict a variable type
function declaration:
function (address, guessbyce): Return the variable type you want it to be. If no change, just return guessbyce
Function Parameters[edit]
Parameter | Type | Description |
---|---|---|
function | function | A function that returns a variable type. It's function parameters are (address, guessbyce) |