lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Luiz Henrique de Figueiredo wrote:
I compile the scripts within my engine using luaL_loadstring.

You need to lua_pcall after luaL_loadstring. Or use luaL_dostring.

	"This function only loads the chunk; it does not run it."
	http://www.lua.org/manual/5.1/manual.html#luaL_loadstring

Yea, but I don't want to execute the (whole / main) chunk, I just want to execute a function called START as the main entry point of the script.
If no function START is defined, I want to do nothing / revoke execution.
How can I do this?

Thank you!