9 lines
242 B
Text
9 lines
242 B
Text
function _printf(fmt,...)
|
|
log(string.format(fmt,...))
|
|
end
|
|
|
|
function collect_info(npc, type)
|
|
collectgarbage("collect")
|
|
collectgarbage("collect")
|
|
_printf("MEMUSAGE [%s]->[%s] %d Kb",npc:name(), type, collectgarbage("count"))
|
|
end
|