View Single Post
  #12  
Old 01-17-2013, 10:12 PM
Noport
Opcode Ninja
 
Join Date: Mar 2009
Location: San francisco
Posts: 426
Default

did you change your database under variables to minilogin?
i'm sorry kolamer this is for local only
opcode.conf
Code:
#Login opcodes
OP_SessionReady=0x0001
OP_Login=0x0002
OP_ServerListRequest=0x0004
OP_PlayEverquestRequest=0x000d
OP_PlayEverquestResponse=0x0022 
OP_ChatMessage=0x0017 
OP_LoginAccepted=0x0018 
OP_ServerListResponse=0x0019 
OP_Poll=0x0029
OP_EnterChat=0x000f
OP_PollResponse=0x0011
eqemu_config.xml
Code:
<?xml version="1.0">
<server>
	<world>
		<!-- Set the shortname to ONE word. The longname is what shows up on server list -->
		<shortname>Emberwood</shortname> 
		<longname>The Emberwood Forest</longname>

		<!-- DO NOT EDIT ANY LINES BETWEEN HERE AND THE DATABASE SECTION -->
		<address>127.0.0.1</address>
		<localaddress>127.0.0.1</localaddress>

		<!-- Loginserver information.  DO NOT EDIT -->
		<loginserver>
			<host>127.0.0.1</host>
			<port>5998</port>
			<account>xxxxxx</account>
			<password>xxxxxxx</password>
		</loginserver>

		<!-- Server status.  Default is unlocked DO NOT EDIT RIGHT NOW -->
		<!--<locked/>-->
		<!-- <unlocked/> -->

		<!-- Sets the ip/port for the tcp connections.  DO NOT EDIT -->
		<tcp ip="localhost" port="9000" telnet="disable"/>

		<!-- Sets the shared key used by zone/launcher to connect to world -->
		<key>xxxxxxxxxxxxxxxxxx</key>
		
		<!-- Enable and set the port for the HTTP service.  Defaults are shown -->
		<http port="9080" enabled="false" mimefile="mime.types" />
	</world>

	<!-- Chatserver (channels) information.  DO NOT EDIT -->
	<chatserver>
		<host>127.0.0.1</host>
		<port>7778</port>
	</chatserver>

	<!-- Mailserver (in-game mail) information.  DO NOT EDIT -->
	<mailserver>
		<host>127.0.0.1</host>
		<port>7779</port>
	</mailserver>
	
	<zones>
		<!-- The defaultstatus is what status the new toons will have on your server -->
		<defaultstatus>0</defaultstatus>

		<!-- Sets port range for world to use to auto configure zones DO NOT EDIT RIGHT NOW-->
		<ports low="7000" high="7100"/>
	</zones>

	<!-- Set username to root and password is your MySQL password and db to peq -->
	<database>
		<host>localhost</host>
		<port>3306</port>
		<username>xxxxxx</username>
		<password>xxxxxx</password>
		<db>peq</db>
	</database>

	<!-- Launcher Configuration DO NOT EDIT-->
	<launcher>
		<!-- <logprefix>logs/zone-</logprefix> -->
		<!-- <logsuffix>.log</logsuffix> -->
		<!-- <exe>zone.exe</exe> -->
		<!-- <timers restart="10000" reterminate="10000"> -->
	</launcher>

	<!-- File locations.  DO NOT EDIT -->
	<files>
		<!-- <spells>spells_us.txt</spells> -->
		<!-- <opcodes>opcodes.conf</opcodes> -->
		<!-- <logsettings>log.ini</logsettings> -->
		<!-- <eqtime>eqtime.cfg</eqtime> -->
	</files>
	<!-- Directory locations.  DO NOT EDIT -->
	<directories>
		<!-- <maps>Maps</maps> -->
		<!-- <quests>quests</quests> -->
		<!-- <plugins>plugins</plugins> -->
	</directories>
</server>
Loginsever.ini
Code:
# READ README.TXT
[LoginServer]
loginserver=127.0.0.1
loginport=5998
worldname=The Emberwood Forest
worldaddress=127.0.0.1
locked=false
account=root
password=xxxxxx

[WorldServer]
Defaultstatus=0
Unavailzone=

[ChatChannelServer]
worldshortname=Emberwood
chataddress=127.0.0.1
chatport=3018

[LoginConfig]
ServerMode=minilogin
ServerPort=5998
EQHost
Code:
[LoginServer]
Host=127.0.0.1:5998
config.ini
Code:
[Database]
host=localhost
user=xxxxxx
password=xxxxxxxx
database=peq
compression=off

[General]
quests=C:\EQEmu\Quests\

wordwrap=1
db.ini
Code:
[Database]
host=localhost
user=xxxxx
password=xxxxxxx
database=peq
Reply With Quote