AutentificareUtilizatorParola
Autentifica-ma automat la fiecare vizita    
Inregistrare
Inregistrare
Mesaje private
Mesaje private
Pagina de start a forumului MuZone Forum » Guides

Creaza un subiect nou   Raspunde la subiect
Making a wow server with Antrix 2.1.0 Du-te la pagina 1, 2, 3, 4  Urmatoare
Subiectul anterior :: Subiectul urmator  
Autor Mesaj
Astaroth
Admin
<b><font color=red>Admin</font></b>


Data inscrierii: 04/Oct/2006
Mesaje: 2640
Localitate: MuZone World!

MesajTrimis: 16/06/2007 21:06    Titlul subiectului: Making a wow server with Antrix 2.1.0 Raspunde cu citat (quote)

DB, This is NOT a converted DB. This is a Proper Antrix DB Updated for 2.1.0.

Download

Newest Antrix Core Rev 290.

Download


2.1.0 DBC's

Download

Full Maps

Download

MySql
MySql Download

Links updated 23.06.2007
_________________


Ultima modificare efectuata Astaroth la 26/06/2007 18:27, modificat de 6 ori in total
Sus
Vezi profilul utilizatorului Trimite mesaj privat Trimite un mesaj Viziteaza site-ul autorului Codul Yahoo Messenger Codul MSN Messenger
Astaroth
Admin
<b><font color=red>Admin</font></b>


Data inscrierii: 04/Oct/2006
Mesaje: 2640
Localitate: MuZone World!

MesajTrimis: 16/06/2007 21:07    Titlul subiectului: Raspunde cu citat (quote)

Installation, step-by-step:

1) [First-Timers Only] Install MySQL 5.0 Essentials and SQLyog.

If you already have these tools on your machine (for a previous MaNGOS installation, or otherwise) you do not need to reinstall them. SQLyog itself is optional if you are comfortable with the command-line syntax for MySQL, but it's recommended anyway just for its visual presentation of very large tables.

Follow the basic default setup for both programs -- no special options are needed. To be excruciatingly specific:

* You want a Typical installation, not Complete or Custom.
* Agree to start the configuration wizard when it asks.
* You want a Standard configuration, not a Detailed configuration.
* You want to Install As Windows Service.
* You do not want root access from remote machines, and you do not want an Anonymous Account.

If you really need a more in-depth configuration of your MySQL server, chances are you already know how to do it.


2) [First-Timers Only] Create a new SQL user.

The importance of this step cannot be understated. It does make things complicated, but you cannot let programs connect as root to your database. The root user's privileges supercede all others; with access to this account, anyone could destroy everything, and if that happens, there will be nothing you can do. The only place that you should ever have your root password is in your head -- not sitting as plain text in a .conf file.

In SQLyog, go to the 'Tools' menu at the top, and then go to 'User Manager' -> 'Add User.' Create a username and password; these will be the username and password that you place in the .conf files later on. Change the host to 'localhost', and under the Global Privileges, check the boxes for 'Select,' 'Insert,' 'Update,' and 'Delete.' Press the 'Create' button at the bottom, and you are done.


3) Create a blank database for Antrix.

This part is fairly simple: create a new, empty database to keep the data for Antrix. A realm database (such as the one MaNGOS uses) is not necessary.

If you have a previous installation, using Gospel's DB, you are best off blowing it away completely and starting from scratch. That specific database was shown to have a number of crippling problems.

To "empty out" a database in SQLyog, right-click on the 'antrix' database and select 'Empty Database.'

To create a new database SQLyog ('DB' menu -> 'Create Database', and then entering 'antrix' as the name), or by executing the query "create database antrix".

You should know better, at this point, than to include the quotes in any of those statements.


4) Extract the packages.

Extract the core server (antrix120-2.1.0-jerks.rar) into its own directory (e.g., c:\wowserver\antrix\). Next, extract the database (antrix_db.rar) into the sql\ folder that was created there.

If you are updating from a previoius version, it should be OK to simply overwrite all of the files. Make sure you either save a copy of your existing .conf files, or be prepared to edit the new ones though!

It is not necessary to place the antrix.sql file in your installation's sql/ folder, though it can prove useful in the event that everything goes horribly wrong and you need to start from scratch again. If you're comfortable backing up your own data, you can simply extract the .sql file to your desktop, use it from there, and delete it when you're done.


5) Populate the antrix database.

Now we will restore the sql dump to put data into the empty database. Former MaNGOS users will be familiar with this process; simply right-click on the database "antrix" in SQLyog, click "Restore from SQL Dump," and direct it to the spot where you extracted antrix.sql (e.g., c:\wowserver\antrix\sql\antrix.sql).

This can also be done from the commandline, if you have access to the MySQL commandline tools, with the following:

mysql -u root -p antrix < c:\path\to\name_of_file.sql


Either way, once execution completes, this step is finished.


6) Edit your configuration files

This part is straightforward -- you have three files to configure, in the main Antrix directory:

* logonserver.conf
* realms.conf
* antrix.conf

These files are well-documented, and resemble the MaNGOS configuration files. Just read through them and change values as needed until you are done, then save and exit.

If you are updating a previous configuration, just copy your backups straight over these files.

One note on configuration: The realms.conf file is a little confusing when it comes to distinguishing between the world server, realm list, and login server. When you get to the section where you are configuring LoginServer1.Port, do not change it from the default of 8093. This is the port that the world server uses to communicate back and forth with the login server, and it is hard-coded at the moment.


7) Extract maps and DBCs.

While there are map- and dbc-packs available for download in various places, I really prefer extracting them myself, to ensure that they are the correct version. Tools for doing this, as well as instructions, are enclosed in the binary package -- under maps\mapExtractor and dbc\dbcExtractor, respectively.

Follow the instructions in the README files for each of these utilities, and copy the appropriate .map and .dbc files that are generated over to the maps/ and dbc/ folders in your main Antrix directory.

This will guarantee that you have the right ones to run with Antrix. As is the case with a few supposed 2.1.0 dbc downloads, it won't work if you have them from a 2.0.12 install!

If you already have working maps and dbcs from a previous install, you may skip this step. It may be worth it to pull new maps, as the core package now includes Yamachi's rebuilt map extractor (which ensures that all 2.1.0 content such as the Black Temple will be extracted).


8) Start the server.
[indent][size=2]At this point, Antrix is ready to use. Start logonserver.exe, and then start antrix.exe. Assuming you didn't confuse any port numbers in your configuration files, everything should be up and ready to rock. Errors, crashes, or other problems can be posted in this thread -- I will do my best to address and answer them.


---------------------------------------------------------------------


GM System notes:

Antrix's GM system works on a flag-based system, instead of a level-based one. This means that you can give specific access to certain types of commands to specific user accounts. If you want GM Danny to be able to create NPCs and teleport himself, but you don't want him to go around handing out free levels and gold to himself and everyone else, this is now possible.

As there are no standalone account-administration utilities at this time, you'll have to grant GM powers the old-fashioned way. Go to the 'accounts' table in your 'antrix' database, click the tab marked 'Table Data', and find the column labeled 'gm'. Put the desired GM flags in the cell that is on the row of the user account that you wish to modify. Once you have entered what you need, save that table (blue disk icon) and have that account log in.

For "full" GM powers (level 3 in MaNGOS) simply type 'az' (without the quotes) in that cell. For better control over specific permissions, see the guide posted here. A list of GM commands can be found in the Documentation\ folder of your Antrix install.


---------------------------------------------------------------------------------
_________________
Sus
Vezi profilul utilizatorului Trimite mesaj privat Trimite un mesaj Viziteaza site-ul autorului Codul Yahoo Messenger Codul MSN Messenger
Gono
Newbie
<b>Newbie</b>


Data inscrierii: 20/Iun/2007
Mesaje: 1

MesajTrimis: 20/06/2007 13:43    Titlul subiectului: No link... Raspunde cu citat (quote)

Ehi the link n° 1-2-3 dont works! <img src=" border="0" />
Sus
Vezi profilul utilizatorului Trimite mesaj privat
andr3yup
Newbie
<b>Newbie</b>


Data inscrierii: 03/Dec/2006
Mesaje: 10

MesajTrimis: 23/06/2007 11:56    Titlul subiectului: Raspunde cu citat (quote)

da nu merg linkurile, va rog sa bagati altele care merg, cat mai repede. MZ
Sus
Vezi profilul utilizatorului Trimite mesaj privat
Astaroth
Admin
<b><font color=red>Admin</font></b>


Data inscrierii: 04/Oct/2006
Mesaje: 2640
Localitate: MuZone World!

MesajTrimis: 23/06/2007 11:59    Titlul subiectului: Raspunde cu citat (quote)

ok caut acum niste linkuri noi
_________________
Sus
Vezi profilul utilizatorului Trimite mesaj privat Trimite un mesaj Viziteaza site-ul autorului Codul Yahoo Messenger Codul MSN Messenger
Astaroth
Admin
<b><font color=red>Admin</font></b>


Data inscrierii: 04/Oct/2006
Mesaje: 2640
Localitate: MuZone World!

MesajTrimis: 23/06/2007 12:07    Titlul subiectului: Raspunde cu citat (quote)

Links updated 23.06.2007
_________________
Sus
Vezi profilul utilizatorului Trimite mesaj privat Trimite un mesaj Viziteaza site-ul autorului Codul Yahoo Messenger Codul MSN Messenger
andr3yup
Newbie
<b>Newbie</b>


Data inscrierii: 03/Dec/2006
Mesaje: 10

MesajTrimis: 23/06/2007 12:51    Titlul subiectului: Raspunde cu citat (quote)

la mysql imi da ceva erori nasolae, ca lipseste ceva,, cand vreau sal instalez, si ii dau retry, si nul gaseste, apoi dau ignore si imi iese afara. poti pune altu, sau sami zici ce sa fac?? pls
Sus
Vezi profilul utilizatorului Trimite mesaj privat
Astaroth
Admin
<b><font color=red>Admin</font></b>


Data inscrierii: 04/Oct/2006
Mesaje: 2640
Localitate: MuZone World!

MesajTrimis: 23/06/2007 13:17    Titlul subiectului: Raspunde cu citat (quote)

poate ai virusi nush <img src=" border="0" /> ce erori iti da
_________________
Sus
Vezi profilul utilizatorului Trimite mesaj privat Trimite un mesaj Viziteaza site-ul autorului Codul Yahoo Messenger Codul MSN Messenger
andr3yup
Newbie
<b>Newbie</b>


Data inscrierii: 03/Dec/2006
Mesaje: 10

MesajTrimis: 23/06/2007 21:30    Titlul subiectului: Raspunde cu citat (quote)

astai eroarea: http://img511.imageshack.us/img511/9858/errorcu7.jpg nush ce sa fac
Sus
Vezi profilul utilizatorului Trimite mesaj privat
andr3yup
Newbie
<b>Newbie</b>


Data inscrierii: 03/Dec/2006
Mesaje: 10

MesajTrimis: 23/06/2007 21:44    Titlul subiectului: Raspunde cu citat (quote)

nu pot sa il fac cu alt program <img src=" border="0" />? ca io am sqlyog, Am gasit io altu, care miemi mere http://mysql.mirrors.cybercity.dk/Downloads/MySQL-5.0/mysql-essential-5.0.41-win32.msi

Ultima modificare efectuata de catre andr3yup la 24/06/2007 07:34, modificat de 1 data in total
Sus
Vezi profilul utilizatorului Trimite mesaj privat
andr3yup
Newbie
<b>Newbie</b>


Data inscrierii: 03/Dec/2006
Mesaje: 10

MesajTrimis: 23/06/2007 22:06    Titlul subiectului: Raspunde cu citat (quote)

NU putei explica cum sa facem un server de wow, ca asta nu are nicio legatura cu wowu, nush cum ii acuta, io am facut altfel pana akuma si asta nu are niciun sens, iti trebe sa ai svr mangos inainte sa pui antrix asta sau cum><img src=" border="0" /><img src=" border="0" /> ii foarte greu de inteles, si vezi ca nu merge bd pt antrix, sau clean_db cum ii akolo, si mai am o intrebare, scuzama da chear vreau sa fac svru asta, maps ce is bagate aici pe forum is numai pt 2.1.0, trebe sa le bag si pe celelete, ca ar tr4ebui sa fie vreo 2000 de harti sis numa 70
Sus
Vezi profilul utilizatorului Trimite mesaj privat
andr3yup
Newbie
<b>Newbie</b>


Data inscrierii: 03/Dec/2006
Mesaje: 10

MesajTrimis: 24/06/2007 07:34    Titlul subiectului: Raspunde cu citat (quote)

poti sa schimbi db ca asta nu merge, asta din db_clear
Sus
Vezi profilul utilizatorului Trimite mesaj privat
Darkmaniac7
Newbie
<b>Newbie</b>


Data inscrierii: 26/Iun/2007
Mesaje: 3
Localitate: Texas

MesajTrimis: 26/06/2007 07:02    Titlul subiectului: Raspunde cu citat (quote)

hi, sorry im the only dumb american here that could use a bit of help if you could spare it <img src=" border="0" /> and was wondering...well im trying to set up a server so i can play on lan and my friends through WAN...anyway im not sure yet as to the status of the WAN but for lan when i made the default account (to test) green/green and as soon as i try to connect it says "connecting" for about 1/2 a second then instantly kicks me off and says "Disconnected from server" ive forwarded all ports as far as i know....anyway rather than blathering on it would probably be best to upload the config files so here they are.

Citat:
#######################################################################
# Antrix Configuration File
# Last updated at revision 236
#######################################################################

# Database Section
#
# Database.Host - The hostname that the database is located on
# Database.Username - The username used for the mysql connection
# Database.Password - The password used for the mysql connection
# Database.Name - The database name
# Database.Port - Port that MySQL listens on. Usually 3306.
# Database.Type - Client to use. 1 = MySQL, 2 = PostgreSQL, 3 = Oracle 10g
#

Database.Hostname = 127.0.0.1
Database.Username = root
Database.Password = root
Database.Name = antrix_4
Database.Port = 3306
Database.Type = 1


# Host Directive
#
# This is the address that the server will listen on.
# To listen on all addresses, set it to 0.0.0.0
# Default: 127.0.0.1 (localhost)
#

Host = 0.0.0.0


# World Server Listen Port Directive
#
# This is the port that the world server listens on.
# It has to be the same as what is specified in the
# realms table in the LogonDatabase.
# Default: 8129
#

WorldServerPort = 8129


# Server console logging level
#
# This directive controls how much output the server will
# display in it's console. Set to 0 for none, or -1 to disable.
# -1 = Disabled; 0 = Minimum; 1 = Error; 2 = Detail; 3 = Full/Debug
# Default: 3
#

LogLevel.Screen = 0
LogLevel.File = -1


# World server packet logging feature
#
# If this directive is turned on, a file called `world.log`
# will be created in the server's directory and all packets
# sent and received by clients will be dumped here in bfg
# format.
# Default: 0
#

LogWorld = 0


# Session Limit
#
# This directive controls the amount of sessions that will be
# accepted by the server before it starts to add people to
# the server queue.
# Default: 100
#

PlayerLimit = 100


# Message Of The Day (MOTD)
#
# This message will be displayed by the server in the chat
# box every time any user logs on. Colors can be used in the
# standard WoW format.
# Default: "No MOTD specified"

Motd = "No MOTD specified."


# Send Build On Join
#
# This directive controls whether the server's internal revision
# will be sent to clients upon entering the world. Use it to help
# testers report bugs.

SendBuildOnJoin = 1


# Send Stats On Join
#
# This directive controls whether the server will send the online player
# count to a cilent when it enters the world.

SendStatsOnJoin = 1


# Power regeneration multiplier setup
#
# These directives set up the multiplier in which regen values will be
# multiplied by every 2 seconds.
# Powers:
# Power1 = Mana, Power2 = Rage, Power3 = Energy
#
# Reputation:
# Kill = Rep gained on kill, Quest = rep gained from quests
#
# Honor:
# Honor = multiplier used to calculate honor per-kill.
#
# PvP:
# PvPTimer = in ms, the timeout for pvp after turning it off. default: 5mins (300000)

Rate.Health = 1
Rate.Power1 = 1
Rate.Power2 = 1
Rate.Power3 = 1
Rate.QuestReputation = 1
Rate.KillReputation = 1
Rate.Honor = 1
Rate.PvPTimer = 300000


# XP (Experience) Rate setup
#
# The xp that a player receives from killing a creature will be multiplied
# by this value in order to get his xp gain.
# Default: 1
#

Rate.XP = 1
Rate.QuestXP = 1


# Rest XP Rate
#
# Value is the amount of rest XP a player will recieve per minute of rest time.
# Default: 1
#

Rate.RestXP = 1


# Drop Rate
#
# This value will be multiplied by any gold looted and the drop percentages of the
# items for creatures will also be multiplied for this to determine which items
# to drop.
# Default: 1
#

Rate.Drop = 1
Rate.DropMoney = 1


# Player save rate
#
# Value in milliseconds (ms) that will be between player autosaves.
# Default: 300000 (5 minutes)

Rate.Save = 300000

# Compression rate
#
# Value is from 1-9, the compression level passed to zlib to compress
# update packets. A higher value will consume less bandwidth but more cpu cycles.
# Default: 1 (Best Speed)
#

Rate.Compression = 1


# Queue Update Rate
#
# This directive controls how many milliseconds (ms) between the updates
# that the queued players receieve telling them their position in the queue.
# Default: 5000 (5 seconds).
#

Network.QueueUpdateInterval = 5000


# Update Distance
#
# This directive controls the distance (internal yards) that the player can "see" up to
# and receieve updates for. For smaller servers, you can probably increase this number.
# Increasing this number will also increase the servers bandwidth consumption and CPU usage.
# Default: 80
#

PlrUpdateDistance = 80


# Level Cap
#
# This variable controls the level that stats will be generated up to internally.
# Beyond this level players can still see a higher level visually but their stats won't
# increase beyond this point.
#

LevelCap = 70


# GM Client Channel
#
# This should be set to 'gm_sync_channel' for the My_Master addon to work.
#
# Default: gm_sync_channel
#

GmClientChannel = "gm_sync_channel"


# Seperate Channels Control
#
# This directive controls whether horde and alliance chats will be seperated across channels.
# Set to 1 for blizzlike seperated channels, or 0 to allow horde/alliance to speak to each other
# across channels.
#
# Default: 0
#

SeperateChatChannels = 0


# Terrain Configuration
#
# Set the path to the map_xx.bin files and whether unloading should be enabled for the main world
# maps here. Unloading the main world maps when they go idle can save a great amount of memory if
# the cells aren't being activated/idled often. Instance/Non-main maps will not be unloaded ever.
#
# Default:
# MapPath = "maps"
# UnloadMaps = 1
#

MapPath = "maps"
UnloadMaps = 1


# Breathing Setup
#
# If the breathing code is causing problems or you want to run a fun server, you can disable
# water checks by enabling this directive.
#
# Default: 1
#

EnableBreathing = 1


# Speedhack detection
#
# If this directive is turned on, speedhack detection will be activated and speedhackers
# will be warned / kicked.
#
# Default: 0
#

SpeedhackProtection = 0


# Cheat log setup
#
# These two directives set up the cheater logging file, if turned on any cheat / packet
# exploit / speedhack attempts will be logged here.
#
# Default: off
#

LogCheaters = 0


# GM log setup
#
# These two directives set up the GM command logging fie. If turned on, most gm commands
# will be logged for this file for abuse investigation, etc.
#
# Default: off
#

LogGMCommands = 0


# Mail System Setup
#
# These directives control the limits and behaviour of the ingame mail system.
# All options must have Mail prefixed before them.
#
# ReloadDelay - Controls the delay at which the database is "refreshed". Use it if you're
# inserting mail from an external source, such as a web-based interface.
# 0 turns it off.
# Default: 0
#
# DisablePostageCostsForGM - Enables/disables the postage costs for GM's. DisablePostageCosts overrides this.
# Default: 1
#
# DisablePostageCosts - Disables postage costs for all players.
# Default: 0
#
# DisablePostageDelayItems - Disables the one hour wait time when sending mail with items attached.
# Default: 1
#
# DisableMessageExpiry - Turns off the 30 day / 3 day after read message expiry time.
# WARNING: A mailbox still cannot show more than 50 items at once
# (stupid limitation in client).
# Default: 0
#
# EnableInterfactionMail - Removes the faction limitation for sending mail messages. Applies to all players.
# Default: 1
#
# EnableInterfactionMailForGM - Removes the faction limitation for sending mail messages, but only applies
# to GM's. EnableInterfactionMail overrides this.
# Default: 1
#

Mail.ReloadDelay = 0
Mail.DisablePostageCostsForGM = 1
Mail.DisablePostageCosts = 0
Mail.DisablePostageDelayItems = 1
Mail.DisableMessageExpiry = 0
Mail.EnableInterfactionMail = 1
Mail.EnableInterfactionMailForGM = 1


# Compression Threshold
#
# This directive controls the limit when update packets will be compressed using deflate.
# For lower-bandwidth servers use a lower value at the cost of cpu time.
#
# Default: 1000
#

CompressionThreshold = 1000


# Status Dumper Config
#
# These directives set up the status dumper plugin. Filename is an absolute or relative
# path to the server binary. Interval is the time that the stats will be dumped to xml.
#
# Default: stats.xml / 120000 (2 minutes)
#

StatDumper.FileName = "stats.xml"
StatDumper.Interval = 120000


# Connection Timeout
#
# This directive specifies the amount of seconds that the client will be disconnected
# after if no ping packet is sent. It is advised to leave it at the default.
#
# Default: 180
#

ConnectionTimeout = 180


# MapMgr Preloading
#
# This directive controls whether the entire world will be spawned at server startup
# or on demand. It is advised to leave it disabled unless you are a developer doing
# testing.
#
# Default: off
#

MapMgr.Preloading = 0


# Background Loot Loading
#
# This directive controls whether loot will be loaded progressively during startup
# or in the background in a seperate thread. Turning it on will result in much
# faster startup times.
#
# Default: on
#

Startup.BackgroundLootLoading = 1


# Multithreaded Startup
#
# This controls whether the server will spawn multiple worker threads to use for
# loading the database and starting the server. Turning it on increases the speed
# at which it starts up for each additional cpu in your computer.
#
# Default: on
#

Startup.EnableMultithreadedLoading = 1


# Guild Setup
#
# This directive controls whether the full 10 signatures will be required in order
# to turn in a petition. Smaller servers would be better off having it turned off.
#
# Default: off
#

Guild.RequireAllSignatures = 0


# LogonServer Setup
#
# This directive controls whether pings will be sent to the logonserver to check
# if the connection is still "alive". Expect problems if it is disabled.
#
# Default: on
#

DisablePings = 0


# LogonServer Setup
#
# This directive controls the password used to authenticate with the logonserver.
# It must be the same between the two configs. If it is not, your server will
# not register.
#
# Default: "change_me_world"
#

LogonServer.RemotePassword = "root"


Citat:
#######################################################################
# Realms Configuration File
# Last updated at revision 1259
#######################################################################

# Logon Server Setup
#
# Logon servers are the old "realmlist" or "auth" servers.
# At the moment, you can only set up one. This will be changed in the
# f*t.
#
# LogonServerCount = Number of servers
# LogonServer[x].Address = The address (no port) of the server.
# LogonServer[x].Port = The port on which the logon server listens.
# LogonServer[x].Name = Not really relavant, but name the logon.
#

LogonServerCount = 1

LogonServer1.Address = "192.168.1.99"
LogonServer1.Port = 8093
LogonServer1.Name = "wow2000 Logon"

# Realm Setup
#
# This is the realms that will be added to the list for this instance
# of the server. You can have multiple realms (e.g. one for LAN, WAN).
#
# RealmCount = The number of servers.
# Realm[x].Name = The name of the realm.
# Realm[x].Address = The address (and port) of that realm.
# Realm[x].Icon = The type of realm (PVP, Normal, RPPVP, RP)
# Realm[x].Colour = Realm colour in realm list display.
# Realm[x].TimeZone = Time zone the realm is in.
# Realm[x].Population = (0 = low, 1 = medium, 2 = high)
#

RealmCount = 1

Realm1.Name = "wow2000"
Realm1.Address = "192.168.1.99:8129"
Realm1.Icon = "normal"
Realm1.Colour = 1
Realm1.Population = 1.0
Realm1.TimeZone = 1


Citat:
#######################################################################
# Antrix Configuration File (Logon)
# Last updated at revision 236
#######################################################################

# LogonDatabase Section
#
# These directives are the location of the `realms` and `accounts`
# tables.
#
# 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.Type - Client to use. 1 = MySQL, 2 = PostgreSQL, 3 = Oracle 10g
#

LogonDatabase.Hostname = 127.0.0.1
LogonDatabase.Username = root
LogonDatabase.Password = root
LogonDatabase.Name = antrix_4
LogonDatabase.Port = 3306
LogonDatabase.Type = 1

# 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.
#

Host = 0.0.0.0
ISHost = 0.0.0.0

# Realm List Listen Port Directive
#
# This is the port that the realm list listens on.
# Unless you have modded the clients, this will
# always be 3724.
#
# Default: 3724
#

RealmListPort = 3724


# Server console logging level
#
# This directive controls how much output the server will
# display in it's console. Set to 0 for none.
# 0 = Minimum; 1 = Error; 2 = Detail; 3 = Full/Debug
# Default: 3
#

LogLevel = 0

# Account Refresh Time
#
# This controls on which time interval accounts gets
# refreshed. (In seconds)
# Default = 600
#

AccountRefresh = 600

# Accepted Build Range Setup
#
# These two directives set up which clients will be
# allowed to authenticate with the realm list.
#
# Set these to the same builds that the server was
# compiled for.
#
# As of the last update, version 2.1.1 was build 6739.
#

MinClientBuild = 6739
MaxClientBuild = 6739

# WorldServer Setup
#
# 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"
#

LogonServer.RemotePassword = "root"
Sus
Vezi profilul utilizatorului Trimite mesaj privat Adresa AIM Codul MSN Messenger
Astaroth
Admin
<b><font color=red>Admin</font></b>


Data inscrierii: 04/Oct/2006
Mesaje: 2640
Localitate: MuZone World!

MesajTrimis: 26/06/2007 09:19    Titlul subiectului: Raspunde cu citat (quote)

Are you sure that this is your database information ?

Citat:

LogonDatabase.Username = root
LogonDatabase.Password = root


and try using your lan IP cuz if you use 127.0.0.1 it will be WAN.
_________________
Sus
Vezi profilul utilizatorului Trimite mesaj privat Trimite un mesaj Viziteaza site-ul autorului Codul Yahoo Messenger Codul MSN Messenger
Darkmaniac7
Newbie
<b>Newbie</b>


Data inscrierii: 26/Iun/2007
Mesaje: 3
Localitate: Texas

MesajTrimis: 26/06/2007 15:24    Titlul subiectului: Raspunde cu citat (quote)

yea root root is right, i just made it to test out....is their anyway to make it so it works for both lan and WAN? thanks in advance XD
Sus
Vezi profilul utilizatorului Trimite mesaj privat Adresa AIM Codul MSN Messenger
Astaroth
Admin
<b><font color=red>Admin</font></b>


Data inscrierii: 04/Oct/2006
Mesaje: 2640
Localitate: MuZone World!

MesajTrimis: 26/06/2007 15:48    Titlul subiectului: Raspunde cu citat (quote)

yeah sure just use localhost ore 127.0.0.1 and for the LAN the realm will be ur lan IP and for WAn it will be ur WAN Ip
_________________
Sus
Vezi profilul utilizatorului Trimite mesaj privat Trimite un mesaj Viziteaza site-ul autorului Codul Yahoo Messenger Codul MSN Messenger
TUSPERiDA
Newbie
<b>Newbie</b>


Data inscrierii: 26/Iun/2007
Mesaje: 1

MesajTrimis: 26/06/2007 18:02    Titlul subiectului: Raspunde cu citat (quote)

Great i works! Only thing that isn't that good is the db..
I've googled and found DBZN, they building a db with the base of obdb 1.4 and they still search people to help. I'm not that good at mysql etc so i can't do anything. so please help this db! you can find it on *******
The outlands is currently crappie spawnt.
Sus
Vezi profilul utilizatorului Trimite mesaj privat
Astaroth
Admin
<b><font color=red>Admin</font></b>


Data inscrierii: 04/Oct/2006
Mesaje: 2640
Localitate: MuZone World!

MesajTrimis: 26/06/2007 18:26    Titlul subiectului: Raspunde cu citat (quote)

thanks TUSPERiDA but it's advertising to other forums so i'll update the db in the guide

http://rapidshare.com/files/39477432/DBAntrix-Rev1-FULLDB.rar
_________________
Sus
Vezi profilul utilizatorului Trimite mesaj privat Trimite un mesaj Viziteaza site-ul autorului Codul Yahoo Messenger Codul MSN Messenger
Darkmaniac7
Newbie
<b>Newbie</b>


Data inscrierii: 26/Iun/2007
Mesaje: 3
Localitate: Texas

MesajTrimis: 27/06/2007 03:01    Titlul subiectului: Raspunde cu citat (quote)

k thx just had another stupid question tho, if i set it as wan or whatev....is their no way for the lan machines to connect to it? also what would be better to use the actual IP or a service like dyndns.com? thx in advance man!
Sus
Vezi profilul utilizatorului Trimite mesaj privat Adresa AIM Codul MSN Messenger
hobbes
Newbie
<b>Newbie</b>


Data inscrierii: 07/Iul/2007
Mesaje: 3

MesajTrimis: 07/07/2007 16:33    Titlul subiectului: Help! Raspunde cu citat (quote)

Sorry, but i'm kinda new with this MySQL and SQLyog stuff; <img src=" border="0" />
when I open SQLyog, it requires me to log in to a MySQL server.
What am I suppose to put in the information? I'm confused <img src=" border="0" />
Sus
Vezi profilul utilizatorului Trimite mesaj privat
AdBot
Robotelul cu reclame


Ce este AdBot ?
Click aici



MesajTrimis: 09/02/2010 17:44    Titlul subiectului: AdBot

Sus
Afiseaza mesajele pentru a le previzualiza:   
Creaza un subiect nou   Raspunde la subiect    Pagina de start a forumului MuZone Forum » Guides Ora este GMT + 2 ore
Du-te la pagina 1, 2, 3, 4  Urmatoare
Pagina 1 din 4

 
Mergi direct la:  
Nu puteti crea un subiect nou in acest forum
Nu puteti raspunde in subiectele acestui forum
Nu puteti modifica mesajele proprii din acest forum
Nu puteti sterge mesajele proprii din acest forum
Nu puteti vota in chestionarele din acest forum
StarBattle

Powered by phpBB © 2001, 2002 phpBB Group
iCGstation v1.0 Template By Ray © 2003, 2004 iOptional

Fa-ti si tu propriul forum GRATUIT, pe www.myforum.ro