can i run a function inside of another function?
example
local function button(bool) if bool then automatic() elseif not bool then manual() end end
Edited by Dustmuz, 08 January 2015 - 01:30 PM.
Posted 08 January 2015 - 12:58 PM
local function button(bool) if bool then automatic() elseif not bool then manual() end end
Edited by Dustmuz, 08 January 2015 - 01:30 PM.
Posted 08 January 2015 - 01:04 PM
Posted 08 January 2015 - 01:07 PM
Posted 08 January 2015 - 01:13 PM
Edited by Bomb Bloke, 08 January 2015 - 01:13 PM.
Posted 08 January 2015 - 01:26 PM
Posted 08 January 2015 - 01:34 PM
function foo() return bar() end function bar() return foo() end
Posted 08 January 2015 - 01:49 PM
Edited by Dustmuz, 08 January 2015 - 08:20 PM.
0 members, 2 guests, 0 anonymous users