Basicly this is in the bios.lua:
if true then
local data1 = "ok"
local data2 = true
local data3 = "done"
local data4 = "k"
function getData()
if data2 then
return data4
else
return data3
end
end
function getDataX()
return data1
end
end
What I wanna get is data3 but as you can see it is hardcoded in
The only way would be to override the functions!
So because this is in bios.lua I have found a working TLCO by Geforce Fan. Now there is a problem
his TLCO overrides the function printError wich is not even close to getData.
Let me show you:
When I override the printError it looks like this:
if true then
--You know what is in here
-- We want to be here
end
-- But we are here:
function printError(txt)
--Our location
end
Now how would I make it go to the place I want and get data3?
And I don't know how overriding works so that might also be a problem
Hope you can help
Thanks