This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
--
[ Picked text/plain from multipart/alternative ]
Alright, I have a problem with cs_hokkaido killing my server under Linux.
The error is the same as I use to get with de_rock when they first released
the final version. They had to fix the map itself. Has anyone else seen this
problem with this map?

L 06/06/2002 - 15:38:13: FATAL ERROR (shutting down): Mod_LoadSpriteGroup:
interval<=0
FATAL ERROR (shutting down): Mod_LoadSpriteGroup: interval<=0

Secondly, I was looking for a quick fix to a problem most of us have with
respect to Adminmod and reserved slots. The problem being that typically ip
addyies listed in the ips.ini are dynamic and will change over time. I'm big
in low maintenance so I told my admins to subscribe to a service like
www.dyndns.org <http://www.dyndns.org>  in which you run a client on your
box and you assign a hostname to your box. On the server side, I take their
hostnames and convert them into ips daily using this python script.


from socket import *
import string

f1 = open("hname.ini")
f2 = open("ips.ini", "w")
f1line = f1.readline()
while f1line:
        hostname = string.strip(f1line)
        ip = gethostbyname(hostname)
        f2.write(ip + "\n")
        f1line = f1.readline()
f1.close()
f2.close()

I list it here in case anyone else could find it useful.
_______________________________________________
To unsubscribe, edit your list preferences, or view the list archives, please visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux

Reply via email to