I have a very simple set up and have been using the 'text' function in a lua script all was fine then yesterday they no longer work - the prompt function will work but not text. Has something been changed or have I missed a declaration somewhere?
function tester2_init(e)
ambience=100
time2 = 800
end
function tester2_main(e)
Panel(84,50,100,100)
-- temporary Hud
Text(85,52,1,"Game Time : " .. math.floor(time2) .. "s")
Text(85,64,2,"Ambience : " .. ambience)
PromptTextSize(3)
PromptLocal((e),"this is from the prompt")
PromptDuration("tester",4000)
end