需要放到nginx或apache或tomcat的目录,或者直接访问我已经部署好的web服务:http://test.huangjx.top/skynet/login.html
引入bewater模块,在skynet服务内添加以下代码
local c = skynet.newservice("ws/watchdog", "webconsole.webconsole", "webconsole.player_t")
skynet.call(c, "lua", "start", {
port = 8888, -- 控制台端口
preload = 1,
})
在skynet服务内添加以下代码
local gm = require "gm"
gm.add_gmcmd("test", "gm.test_cmd")
添加脚本gm/test_cmd.lua
local M = {}
function M.echo()
print "test gm"
end
return M
在后台输入命令:test echo
这个版本过于简陋,不再维护,后续会重构一版全新的,敬请期待~