0 Members and 1 Guest are viewing this topic.
for i = 5, #bt do bt[4] = bt[4]..", "..bt[i]endlocal fCall = assert(loadstring(bt[3].."("..bt[4]..")"))a, b = fCall()self:addHistoryEntry("Returned: "..tostring(a).." and "..tostring(b))
local fCall = assert(loadstring(myfunc.."("..params..")"))a, b = fCall()self:addHistoryEntry("Returned: "..tostring(a).." and "..tostring(b))
function fCall() myfunc(params)end
local params = {}for i = 4, #bt do table.insert(params, bt[i])endlocal myfunc = _G[bt[3]] -- if it's a global function that isa, b = myfunc(unpack(params))self:addHistoryEntry("Returned: "..tostring(a).." and "..tostring(b))
"welcome to the world of computers, where everything seems to be based on random number generators"