I have a question: how do I make the lua_tostring
function limit the amount of entries.
For example 8 characters limit:
poppy_name = "command"; // OK, within the limit;
poppy_name = "commander"; // Fail, Is out of range, show a message the permitted limit.
I searched I couldn't find anymore, is there a way to limit the lua_tostring
?