Forum

> > CS2D > General > loading USGN data offline?
Forums overviewCS2D overviewGeneral overviewLog in to reply

English loading USGN data offline?

5 replies
To the start Previous 1 Next To the start

old Re: loading USGN data offline?

TopNotch
User Off Offline

Quote
user Hajt has written
1
2
3
4
5
6
7
8
-- wget -O /home/cs2d/users.txt 'http://www.unrealsoftware.de/users.php?raw&s=0&c=4294967295'
users = {}
local file = io.open("/home/cs2d/users.txt", "r")
for line in file:lines() do
     local userid, name = line:match("([^,]+),([^,]+)")
     table.insert(users, tonumber(userid), name)
end
file:close()
To the start Previous 1 Next To the start
Log in to replyGeneral overviewCS2D overviewForums overview