home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / Software / Shareware / Comunicatii / nat32 / script / qs < prev    next >
Text File  |  2002-02-21  |  318b  |  17 lines

  1. #!tcl 
  2.  
  3. # Quake 2/3 Master Server mappings 
  4. if {$argc == 0} { 
  5.     error {Usage: qs IPaddress|off} 
  6. set addr [lindex $argv 0] 
  7. if {$addr == "off"} { 
  8.     exec "ppmaps delete udp 8002"
  9.     exec "umaps delete 8002"
  10. } else { 
  11.     exec "ppmap add udp 8002 $addr 8002"
  12.     exec "umap add 8002 1"
  13. }
  14.