由于lua 不支持暂停 用其他方法变相实现
-- 暂停 hock 写法 function _M.sleep(n) if n > 0 then os.execute("ping -c " .. tonumber(n+1) .. " localhost > NULL") end end