ArcEmu Configs/Public problems. please help! :) menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    fstenbergp's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Jun 2010
    Posts
    123
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    ArcEmu Configs/Public problems. please help! :)

    Hey MMowned.

    I've recent started to make my own WoW private server. I've had few before and they turned out well about getting public. But now im getting this problem. I can't get into my own server with my "no-ip" ip.
    Another problem is, that my world.exe cant connect to the logon, tells it was unable to connect and will try again in 10 seconds.
    Please help! Heres my cfg's:
    HTML Code:
    /***********************************************************************
    * ArcEmu Logonserver Configuration File
    * Last edited: 11/14/2010
    *
    *******************************************************************************
    * Configure the logonserver to connect to the accounts mysql database below   *
    *******************************************************************************
    * Database Section
    *
    * LogonDatabase.Host      - The hostname that the database is located on
    * LogonDatabase.Username  - The username used for the mysql connection
    * LogonDatabase.Password  - The password used for the mysql connection
    * LogonDatabase.Name      - The database name
    * LogonDatabase.Port      - Port that MySQL listens on. Usually 3306.
    *******************************************************************************/
    
    <LogonDatabase Hostname = "localhost"
                   Username = "root"
                   Password = "ascent"
                   Name     = "logon"
                   Port     = "3306">
    
    /* Host Directive
    *
    *    This is the address that the realmlist will listen on.
    *    To listen on all addresses, set it to 0.0.0.0
    *    Default: 127.0.0.1 (localhost)
    *
    *    Note: ISHost is the interserver communication listener.
    */
    
    <Listen Host = "0.0.0.0"
            ISHost = "0.0.0.0"
            RealmListPort = "3724"
            ServerPort = "8093">
    
    /* Server file logging level
    *
    *    This directive controls how much output the server will
    *    write to log files. It cannot be disabled
    *    0 = Normal + Error; 1 = Detail; 2 = Debug
    *    Default: 0
    */
    
    <LogLevel File = "0">
    
    /* Account Refresh Time
    *
    *    This controls on which time interval accounts gets
    *    refreshed. (In seconds)
    *    Default = 600
    *    600 seconds = 10 minutes - 1 second = 0.0166666667 minutes 300 seconds = 5 minutes, 150 seconds = 2.5minutes
    *
    */
    
    <Rates AccountRefresh = "600">
    
    /* WorldServer Setup
    *
    *  RemotePassword
    *    This directive controls the password used to authenticate with the worldserver.
    *    It must be the same between the two configs. If it is not, your server will
    *    not register.
    *
    *    Default: "change_me_logon"
    *
    *  AllowedIPs
    *    This section MUST be completed, otherwise all attempts to link your servers will fail.
    *    These "Allowed" fields are a space-separated list of CIDR-form IP addresses that are allowed
    *    to make server connections to your logonserver, and register realms.
    *    For example, everything in the 127.0.0.* range would be:
    *         127.0.0.0/24, as 24 of the bits must match the 127.0.0.0
    *
    *    To allow a single IP,
    *         1.3.3.7/32, would allow only 1.3.3.7 to connect as 32 of the bits must match.
    *
    *  AllowedModIPs
    *    In the same form as AllowedIPs, these are the IPs that are allowed to modify the database
    *    (adding bans, GMs, account permissions, etc)
    */
    
    <LogonServer RemotePassword = "ascent"
                 AllowedIPs = "94.145.220.25/24"
                 AllowedModIPs = "94.145.220.25/24">
    HTML Code:
    /*****************************************************
    * ArcEmu Realms Configuration File
    * Last edited: 11/14/2010
    *
    * Configure ArcEmu's Realms below
    ******************************************************
    ******************************************************
    * LogonServer Section
    *
    *    Address:
    *      The address (no port) of the server.
    *
    *    Port:
    *      The port on which the logon server listens. (*** NOT 3724 ***)
    *
    *    Name:
    *      Not really relevant, but name the logon.
    *
    *    RealmCount:
    *      The number of realms in the next section.
    *	To add more realms, increase this - and also fill out more realms below depending on the configuration you need to connect to them.
    *
    ******************************************************/
    
    <LogonServer Address = "94.145.220.25"
    	Port = "8093"
    	Name = "Electrify V2"
    	RealmCount = "3">
    
    /******************************************************
    * 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)
    *
    *    TimeZone:
    *      The location of the server (1=Development, 2=United States, 3=Oceanic, 4=Latin America, 
    *       5=Tournament, 6=Korean, 8=English, 9=German, 10=French)
    *
    *    Population:
    *      (0 = low, 1 = medium, 2 = high)
    *
    *   Important information below
    *
    *
    *	To make your server public and for you to be able to connect to it, please read this entirely.
    *
    *
    * We added two more realms to the default, why? Because of how internal networking works - each outside IP to your IP needs a connection to listen on for players/you to be able to log into.
    * This issue came up alot and MANY poorly written guides also came up with modifications to the host list in windows and a bunch of other fallacies.
    * Using these new "three realm" configs you don't have to follow any guides but this one.
    *
    *	<Realm1 Name = "Electrify Repack"
    *		Address = "127.0.0.1:8129" 
    *		Icon = "PVP"
    *		Population = "1.0"
    *		TimeZone = "2">
    *	
    *	<Realm2 Name = "Private"
    *		Address = "internal-ip-address-for-lan-access:8129" 
    *		Icon = "PVP"
    *		Population = "1.0"
    *		TimeZone = "1">
    *
    *	<Realm3 Name = "Localhost"
    *		Address = "localhost:8129" 
    *		Icon = "PVP"
    *		Population = "1.0"
    *		TimeZone = "1">
    *	
    *	EXPLANATION:
    *
    *	These three realms are all one realm, all making different listening IPs so others may log into the world.
    *
    *	Realm1 is the public realm, people outside of your network log into this.
    *
    *	Realm2 is the IP of the computer hosting the server. It will most commonly be a 192.168.*.* IP. NOT YOUR OUTSIDE/INTERNET IP. This is so other computers in your local arena network can connect to the realm.
    *
    *	Realm3 is the localhost connection, you will be using this to log into your server if you host and login to the server from the SAME computer.
    *
    *	Realmlist would then be the IP that is suitable for you to use in your setup, players will use the realm1 URL - while you use either realm2 or realm3 depending on the server setup.
    *
    *	You can cleanup the unused realms you made while doing this process if you have any, however even if you use a Realm3 type configuration to login, remember local network users on the same LAN as you will use Realm2 to login. 
    *
    *	To obtain your LAN IP address on:
    * Windows = windows-key+r > type "cmd" > type "ipconfig" > under "IPV4 Address:"
    * Linux = terminal > type "ifconfig" > under eth0's "inetaddr:"
    *	To obtain your INTERNET IP:
    * Go to: http://www.whatsmyip.org/
    * Foward ports: 3724 (Realmlist) and 8129 (World) 
    * If you add more outside(public) realms remember that their world ports need forwarding too.
    *
    * 	Timezone values :
    *	0=Korean			16=China
    *	1=Development		17=CN1
    *	2=United States     18=CN2
    *	3=Oceanic			9=CN3
    *	4=Latin America		20=CN4
    *	5=Tournament		21=CN5
    *	6=Korean			22=CN6
    *	8=English			23=CN7
    *	9=German			24=CN8
    *	10=French			25=Tournament
    *	11=Spanish			26=Test Server
    *	12=Russian			27=Tournament
    *	13=Tournament		28=QA Server
    *	14=Taiwan			29=CN9
    *	15=Tournament		30=TestServer2
    ******************************************************/
    
    <Realm1 Name = "KroWn WoW 255 Fun"
    	Address = "krown-wow.servegame.com:8129" 
    	Icon = "PVP"
    	Population = "1.0"
    	TimeZone = "1">
    	
    <Realm2 Name = "KroWn WoW Twink Server"
    	Address = "krown-wow.servegame.com:8129" 
    	Icon = "PVP"
    	Population = "1.0"
    	TimeZone = "1">
    
    <Realm3 Name = "KroWn WoW 80 PvP"
    	Address = "krown-wow.servegame.com:8129" 
    	Icon = "PVP"
    	Population = "1.0"
    	TimeZone = "1">
    HTML Code:
    # Copyright (c) 1993-2009 Microsoft Corp.
    #
    # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
    #
    # This file contains the mappings of IP addresses to host names. Each
    # entry should be kept on an individual line. The IP address should
    # be placed in the first column followed by the corresponding host name.
    # The IP address and the host name should be separated by at least one
    # space.
    #
    # Additionally, comments (such as these) may be inserted on individual
    # lines or following the machine name denoted by a '#' symbol.
    #
    # For example:
    #
    #      102.54.94.97     rhino.acme.com          # source server
    #       38.25.63.10     x.acme.com              # x client host
    
    # localhost name resolution is handled within DNS itself.
    #	127.0.0.1       localhost
    #	krown-wow.servegame.com    mydyndns
    
    127.0.0.1				activate.adobe.com
    127.0.0.1	krown-wow.servegame.com
    10.0.0.1	krown-wow.servegame.com
    10.0.0.3	krown-wow.servegame.com
    94.145.220.25	krown-wow.servegame.com
    Sorry if i messed in something just comment and i will try to answer .
    Would love your help!

    -KroWn is out!

    ArcEmu Configs/Public problems. please help! :)
  2. #2
    fstenbergp's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Jun 2010
    Posts
    123
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would really hope for some help :s Would love to play with some friends tonight.

  3. #3
    Found's Avatar Banned
    Reputation
    239
    Join Date
    Mar 2009
    Posts
    642
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    <Realm1 Name = "KroWn WoW 255 Fun"
    Address = "krown-wow.servegame.com:8129"
    Icon = "PVP"
    Population = "1.0"
    TimeZone = "1">

    <Realm2 Name = "KroWn WoW Twink Server"
    Address = "krown-wow.servegame.com:8129"
    Icon = "PVP"
    Population = "1.0"
    TimeZone = "1">

    <Realm3 Name = "KroWn WoW 80 PvP"
    Address = "krown-wow.servegame.com:8129"
    Icon = "PVP"
    Population = "1.0"
    TimeZone = "1">
    This will all be 1 realm you know that right?

    <LogonServer Address = "94.145.220.25" <--- make this 127.0.0.1
    Port = "8093"
    Name = "Electrify V2" <---- MAKE THIS "DEFAULT LOGON" (no caps)
    RealmCount = "3">

    <LogonServer RemotePassword = "ascent"
    AllowedIPs = "94.145.220.25/24" make the "94.145.220.25" 127.0.0.1
    AllowedModIPs = "94.145.220.25/24"> make the "94.145.220.25" 127.0.0.1

  4. #4
    fstenbergp's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Jun 2010
    Posts
    123
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks about that! Now my world.exe can find the logon, now i just got the public problem. I can't connect, just freezes on connected and there nothing to do :/. Even i cant login, and im the host.

  5. #5
    Found's Avatar Banned
    Reputation
    239
    Join Date
    Mar 2009
    Posts
    642
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    use 127.0.0.1 as RL

  6. #6
    fstenbergp's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Jun 2010
    Posts
    123
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well other ppl cant join it than :d

  7. #7
    Found's Avatar Banned
    Reputation
    239
    Join Date
    Mar 2009
    Posts
    642
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No just for you, but if nobody can join with the actual reamlist, then you might wanna check ports. Make sure they're forwarded for BOTH

  8. #8
    fstenbergp's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Jun 2010
    Posts
    123
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    could you show me what the configs shall be? so im sure thats not the problem

  9. #9
    Vragoth's Avatar Established Member
    Reputation
    55
    Join Date
    Nov 2008
    Posts
    422
    Thanks G/R
    5/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did you portfoward ?

  10. #10
    fstenbergp's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Jun 2010
    Posts
    123
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yep portforwarded them all

  11. #11
    Found's Avatar Banned
    Reputation
    239
    Join Date
    Mar 2009
    Posts
    642
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The configs are fine, you might have a problem with the ports, make sure your Firewall is off.

  12. #12
    fstenbergp's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Jun 2010
    Posts
    123
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    all my ports are forwarded fine and my firewall is off. I have no idea what to do, i cant even connect on my own computer that is host.

  13. #13
    Found's Avatar Banned
    Reputation
    239
    Join Date
    Mar 2009
    Posts
    642
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    whats the error, stuck at connecting?

    If you compiled, add all the updates in the SQL folder.. thats vital.

    Otherwise I'd say it's something with the ports

  14. #14
    fstenbergp's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Jun 2010
    Posts
    123
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well i think i'll try another repack and gotta check if theres a difference.

  15. #15
    Found's Avatar Banned
    Reputation
    239
    Join Date
    Mar 2009
    Posts
    642
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ewww repacks, that your problem, just compile.

Page 1 of 2 12 LastLast

Similar Threads

  1. Huge Problem Please Help
    By elethina in forum World of Warcraft Emulator Servers
    Replies: 9
    Last Post: 03-21-2008, 09:11 PM
  2. OMG Major Problem Please Help!!!
    By BillyBob31 in forum World of Warcraft Emulator Servers
    Replies: 11
    Last Post: 03-16-2008, 01:54 PM
  3. Two problems! please help
    By fermoric in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 10-09-2007, 12:02 AM
  4. Instance problem please help
    By Arch in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 09-13-2007, 06:34 PM
  5. WoWModelViewer problem please help
    By Adrenalin3 in forum World of Warcraft General
    Replies: 0
    Last Post: 05-23-2007, 05:08 PM
All times are GMT -5. The time now is 02:43 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search