How do I have two realms and only show one. menu

User Tag List

Results 1 to 8 of 8
  1. #1
    barinar's Avatar
    barinar
    Guest

    How do I have two realms and only show one.

    I have to have two realms for my server, the public one, and the one I need to log on.

    How do I make it so that only I can see the local one. Everyone keeps asking why its on the server list and I want it so they can't see it.

    How do I have two realms and only show one.
  2. #2
    pcrew's Avatar Member
    Reputation
    54
    Join Date
    Jun 2008
    Posts
    88
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    set the player capacity of that realm to zero so only GMs will be able to log-in

  3. #3
    barinar's Avatar
    barinar
    Guest
    How do I do that? The only thing I have for the second realm is in the realm.conf

    both realms take me to the same world. I just need a separate one because if I use the main one I get stuck in realm loop and I don't want people to see the second one.

  4. #4
    Kiev's Avatar Contributor
    Reputation
    288
    Join Date
    Nov 2007
    Posts
    1,819
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have tried this numerous of times, and the only way i think it is possible is by: Having two seperate databases, two sepearate ascent-world.exe and in the one you want to you set the IP in realms.conf to: 127.0.0.1, that will make it local only, hope this helped

  5. #5
    Choices's Avatar Member
    Reputation
    94
    Join Date
    Apr 2008
    Posts
    231
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Whatever is in red you have to modify

    Code:
    #######################################################################
    # ArcEmu Realms Configuration File
    # Last updated at revision rev.1875
    #######################################################################
    
    #********************************************************************************
    #* 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 = "paultest.servegame.org"
    	Port = "8093"
    	Name = "Default Logon"
    	RealmCount = "2">
    
    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
    # 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
    #
    #     change 127.0.0.1 to your EXTERNAL ip if you wish to have a PUBLIC server.
    #     This issues come up a lot!
    #
    # 	Timezone values :
    #	0=Korean				16=China
    #	1=Development				17=CN1
    #	2=United States				18=CN2
    #	3=Oceanic				19=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 = "Frostmourne"
    	Address = "External IP:8129" 
    	Icon = "PVP"
    	Population = "1.0"
    	TimeZone = "1">
    
    <Realm2 Name = "Lich King"
            Address = "127.0.0.1:8129"
    	Icon = "PVP"
    	Colour = "1"
    	Population = "1.0"
    	TimeZone = "1">
    Notice i have 2 realms, one set to my external ip in which people can connect, and one set to my localhost so only i can connect.

  6. #6
    Kiev's Avatar Contributor
    Reputation
    288
    Join Date
    Nov 2007
    Posts
    1,819
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That is so PaulB but he also wants a seperate DB if i read it right

  7. #7
    barinar's Avatar
    barinar
    Guest
    I just want to block people from seeing the local realm. Only I connect to it, but people keep asking what it is. It's not a big deal, just an annoyance.

  8. #8
    Sounddead's Avatar Contributor
    Reputation
    160
    Join Date
    Sep 2007
    Posts
    1,126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There isn't a way. Its just something you have to deal with if your hosting, and playing on the same computer.

    I live in a shoe

Similar Threads

  1. Titans Grip to only show one weapon?
    By lallhend in forum WoW ME Questions and Requests
    Replies: 2
    Last Post: 09-05-2010, 03:02 AM
  2. how do I have 2 realms on my computer
    By project anthrax in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 06-13-2008, 09:16 PM
  3. If you own a server (have DB acsess) and have TWO servers look here!!!
    By Chuck Norris in forum World of Warcraft Emulator Servers
    Replies: 12
    Last Post: 01-25-2008, 05:03 PM
  4. how do i make two realms?
    By anonymous23 in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 01-05-2008, 01:59 PM
  5. How To Have 2 Realms On Same Comp [Hamachi]
    By IcyHot in forum WoW EMU Guides & Tutorials
    Replies: 3
    Last Post: 11-15-2007, 03:15 AM
All times are GMT -5. The time now is 05:32 AM. 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