Making my server public [ascent]

Newbie Spellweaver
Joined
Aug 9, 2007
Messages
56
Reaction score
0
I have done everything that it says on this http://forum.ragezone.com/f114/tutorial-how-make-your-antrix-server-public-without-hamachi-273763/ thread but i when my friends join it says Loging into gameserver and stays there. Could someone tell me what is wrong here is my realms.conf
Code:
#######################################################################
# Ascent Realms Configuration File
# Last updated at revision 446 by Burlex
#######################################################################
/********************************************************************************
 * How to use this config file:                                                 *
 * Config files are in a block->variable->setting format.                       *
 * A < signifies the opening of a block, the block name is expected after that. * 
 * After the block name, a space and then the settings sperated by = / ' '.     *
 *                                                                              *
 * e.g.                                                                         *
 * <block setting="0" someval = "1">                                            *
 *                                                                              *
 * Comments can be in C format, e.g. /* some stuff */, with a // at the start   *
 * of the line, or in shell format (#).                                         *
 ********************************************************************************/
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
# LogonServer Section
#
#    Address:
#        The address (no port) of the server.
#
#    Port:
#        The port on which the logon server listens. (*** NOT 3724 ***)
#
#    Name:
#        Not really relavant, but name the logon.
#
#    RealmCount:
#        The number of realms in the next section.
#
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
<LogonServer Address = "127.0.0.1"
             Port = "8093"
             Name = "Death Jester"
             RealmCount = "1">
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
# Realm Section
#
#    Name:
#        The name of the realm.
#    
#    Address:
#        The address (and port) of that realm.
#
#    Icon:
#        The type of realm (PVP, Normal, RPPVP, RP)
#
#    Colour:
#        Realm colour in realm list display.
#
#    TimeZone:
#        Time zone the realm is in.
#
#    Population:
#        (0 = low, 1 = medium, 2 = high)
#8093 8129
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
<Realm1.Name          = "DeathjestersPvP(150xrates)"
Realm1.Address       = "[My external IP]:8129"
Realm1.Icon          = "PVP"
Realm1.Colour        = 1
Realm1.Population    = 0
Realm1.TimeZone      = 1 
>
 
Did you open the correct ports on your firewall/router to get to your machine - specifically 3274, 8093, 8129, 3306, and 3036?

If you did this, and they are still having issues, you may need to enable logging on your router to see whats going on. It sounds like the 8093 port isn't working properly - the "logging into server" is the authentication piece for the database.

Also, try modifying this part of your code:
Code:
LogonServer Address = "127.0.0.1"
 Port = "8093"             
Name = "Death Jester"             
RealmCount = "1"

with:
Code:
LogonServer Address = "<your IP address>"
 Port = "8093"             
Name = "Death Jester
RealmCount= "1"
 
Back