I recently found my old Quake III Arena disk and got addicted again

When I tried configuring my own dedicated server I ran into a small problem tho. My server is able to run, and the settings seem to be configured ok, but it only appears when I search for a local server in Q3A, not when I search for a server on the internet.
Below are my .bat and .cfg file. I hope anyone can help me and tell me what I should change to make it a "server on the internet".
Thanks in advance!
The .cfg file:
Code: Select all
// Server Config for "Porto's FFA Server"
seta sv_hostname "Porto's FFA Server"
seta sv_maxclients 16
seta g_motd "Welcome to the Arena, morituri te salutant!"
seta g_quadfactor 3
seta g_gametype 0
seta timelimit 15
seta fraglimit 25
seta g_needpass 0
seta g_password "none"
seta g_weaponrespawn 4
seta sv_pure 1
seta g_forcespawn 5
seta g_minPing 150
seta g_inactivity 8000
seta g_forcerespawn 0
seta rconpassword "password"
seta g_syncronousClients 0
// Map rotation:
set d1 "map rustgrad ; set nextmap vstr d2"
set d2 "map rqm3dm1 ; set nextmap vstr d3"
set d3 "map q3dm12 ; set nextmap vstr d4"
set d4 "map 13base ; set nextmap vstr d5"
set d5 "map focal_p132 ; set nextmap vstr d6"
set d6 "map q3dm19 ; set nextmap vstr d7"
set d7 "map nodm5 ; set nextmap vstr d8"
set d8 "map q3dm11 ; set nextmap vstr d9"
set d9 "map yog3dm2 ; set nextmap vstr d10"
set d10 "map qfraggel3ffa ; set nextmap vstr d11"
set d11 "map solarae ; set nextmap vstr d12"
set d12 "map aedm7 ; set nextmap vstr d13"
set d13 "map lun3dm5 ; set nextmap vstr d14"
set d14 "map ct3dm5 ; set nextmap vstr d15"
set d15 "map 13hive ; set nextmap vstr d16"
set d16 "map 13edge ; set nextmap vstr d1"
vstr d1
Code: Select all
quake3 +set dedicated 2 +set bot_enable 0 +exec FFAserversettings.cfg
Porto