home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2005 June
/
ccd0605.iso
/
Software
/
Shareware
/
Comunicatii
/
nat32
/
script
/
qs
< prev
next >
Wrap
Text File
|
2002-02-21
|
318b
|
17 lines
#!tcl
#
# Quake 2/3 Master Server mappings
#
if {$argc == 0} {
error {Usage: qs IPaddress|off}
}
set addr [lindex $argv 0]
if {$addr == "off"} {
exec "ppmaps delete udp 8002"
exec "umaps delete 8002"
} else {
exec "ppmap add udp 8002 $addr 8002"
exec "umap add 8002 1"
}