stoneage8.5/客户端lua文件/list.lua
2020-06-23 15:27:59 +08:00

22 lines
532 B
Lua

function data()
grouplist = {{1, 2, 0, "测试线路"}
}
serlist = {
{"192.168.1.2","19065","电信线路"},
{"192.168.1.2","19065","网通线路"},
}
end
function main()
data()
ServerList.SetGroupMaxNum(table.getn(grouplist))
for i = 1, table.getn(grouplist) do
ServerList.SetGroupList(i - 1, grouplist[i][1], grouplist[i][2], grouplist[i][3], grouplist[i][4])
end
for i = 1, table.getn(serlist) do
ServerList.SetServerList(i - 1, serlist[i][1], serlist[i][2], serlist[i][3])
end
end