|
发表于 2022-11-1 13:36:54
|
显示全部楼层
function data()
grouplist = {{1,2,0,"公益石器"},
}
serlist = {{"1222.186.15.245", "29065","电信线路"}
,{"1103.56.63.216","29065","网通线路"}
}
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
|
|