1
Lua / Re: Lua Q&A
« on: November 18, 2012, 09:59:08 am »
So where do I do that? Is this the way to call a function?
function SceneUpdate()
if wormhp == 0 then run("level")
end
end
function level()
xp = xp + 1
return
end
function SceneUpdate()
if wormhp == 0 then run("level")
end
end
function level()
xp = xp + 1
return
end