Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Quick Config Tips Guide

Junior Spellweaver
Joined
Feb 5, 2007
Messages
136
Reaction score
45
Thinks to think about: Oh the thinks you can think if only you try :)

Set all permissions
Code:
chmod 755 -R /WHATEVERDIRISYOURSERVERIN

Copy to /lib all .so files from gamed directory.

look at
Code:
authd/build/authd
actual file you can edit it make sure path is correct.

look at
Code:
killserver.sh
set proper path there for maximum effect :p

files you need to modify are few:

authd/build/authd.conf << Pay attention to MSSQL stuff at top of the file.
authd/build/table.xml << Pay attention to mysql stuff at top of the file.

Code:
./start.sh

Post any questions in the help section.
 
Junior Spellweaver
Joined
Aug 3, 2012
Messages
131
Reaction score
27
copy server file to /home and create new file past code install script and chmod 777 install script

install script
Code:
#!/bin/bash

echo -e "\n\nCreating Symbolic Links and Installing Libraries\n\n"
rm -rf /etc/authd.conf;
rm -rf /etc/table.xml;
rm -rf /etc/gmopgen.xml;
rm -rf /lib/libio32.so;
rm -rf /lib/liblog32.so;
rm -rf /lib/libskill.so;
rm -rf /lib/libtask.so;
ln -s /home/authd/build/authd.conf /etc/;
ln -s /home/authd/build/table.xml /etc/;
ln -s /home/authd/build/gmopgen.xml /etc/;
ln -s /home/gamed/libio32.so /lib/;
ln -s /home/gamed/liblog32.so /lib/;
ln -s /home/gamed/libskill.so /lib/;
ln -s /home/gamed/libtask.so /lib/;

echo -e "\n\nDone installing....\n\n"

echo -e "Make sure you edit /etc/table.xml to properly run authentication server!"

echo -e "\n\nSet Pemission\n\n"
chmod 777 /home/authd/build/authd
chmod 777 /home/gacd/gacd
chmod 777 /home/gamed/gs
chmod 777 /home/gamedbd/gamedbd
chmod 777 /home/gdeliveryd/gdeliveryd
chmod 777 /home/ghubd/ghubd
chmod 777 /home/glinkd/glinkd
chmod 777 /home/logservice/logservice
chmod 777 /home/uniquenamed/uniquenamed
chmod 777 /home/start.sh
chmod 777 /home/stop.sh
chmod 777 /home/kill-force.sh
chmod 777 /home/killservers.sh

echo -e "\n\nSuccess\n\n"

echo -e "\n\n Installing Shared Libraries\n\n"
yum install libxml2.so.2
yum install libstdc++.so.6
yum install libcrypto.so.6
yum install libpcre.so.0
echo -e "\nSuccess\n"
 
Newbie Spellweaver
Joined
May 9, 2014
Messages
61
Reaction score
2
I can't use the command :(

UhRxq7r - Quick Config Tips Guide - RaGEZONE Forums



And when I run ./start.sh

L9f7LQc - Quick Config Tips Guide - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
Junior Spellweaver
Joined
Aug 3, 2012
Messages
131
Reaction score
27
chmod 777 /home/install
or

edit .sh change /server /home save
run /home/install
run /home/start.sh

translate
ทำไมถึงเข้าใจยากจัง
 
Newbie Spellweaver
Joined
May 9, 2014
Messages
61
Reaction score
2
@Toss Last Thanks I can run start ./start.sh now but I got error

Btw, I use centos 6.2


TsiFXcN - Quick Config Tips Guide - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Aug 3, 2012
Messages
131
Reaction score
27
@Toss Last Thanks I can run start ./start.sh now but I got error

Btw, I use centos 6.2


TsiFXcN - Quick Config Tips Guide - RaGEZONE Forums
edit /home/authd/build/authd change "cd /PWServer/authd/build" to "cd /home/authd/build" and save
very easy try to help your self
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
May 9, 2014
Messages
61
Reaction score
2
Yes, I already did that and I already install java but still got the same problem. > <
 
Junior Spellweaver
Joined
Aug 3, 2012
Messages
131
Reaction score
27
/home/authd/build/log4j.xml
Code:
<?xml version="1.0" ?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
 
<log4j:configuration xmlns:log4j='http://jakarta.apache.org/log4j/'>
	<appender name="ASYNC" class="org.apache.log4j.AsyncAppender">
		<param name="BufferSize" value="102400"/> 
		<appender-ref ref="SYSLOG" />
	</appender>

	<appender name="SYSLOG" class="org.apache.log4j.net.SyslogAppender">
		<param name="facility" value="LOCAL0" />
		<param name="SyslogHost" value="127.0.0.1" />
		<param name="Threshold" value="DEBUG" />
		<layout class="org.apache.log4j.PatternLayout">
			<param name="ConversionPattern" value="gauthd: %-5p - %m%n" />
		</layout>
	</appender>

	<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
		<param name="Target" value="System.out" />
		<layout class="org.apache.log4j.PatternLayout">
			<param name="ConversionPattern" value="gauthd: %d{dd MMM yyyy HH:mm:ss,SSS} %5p %c{1}:%L - %m%n" />
		</layout>
	</appender>

	<appender name="FILE" class="org.apache.log4j.DailyRollingFileAppender">
		<param name="File" value="/home/authd/output.log" />
		<param name="Threshold" value="DEBUG" />
		<layout class="org.apache.log4j.PatternLayout">
			<param name="ConversionPattern" value="auagent: %d{yyyy-MM-dd HH:mm:ss,SSS} %-5p - %m%n" />
		</layout>
	</appender>

	<root>
		<priority value ="debug" />
		<appender-ref ref="ASYNC" />
		<appender-ref ref="CONSOLE" />
		<appender-ref ref="FILE"/>
	</root>
</log4j:configuration>
 
Newbie Spellweaver
Joined
May 9, 2014
Messages
61
Reaction score
2
Toss Last Thanks :)

Btw, I got new error lol

directory dose not exit do I need to make it ?

V1om5cz - Quick Config Tips Guide - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Aug 3, 2012
Messages
131
Reaction score
27
???


or copy .so to /lib
 
Newbie Spellweaver
Joined
May 9, 2014
Messages
61
Reaction score
2
Yes, It's there

RoZotAH - Quick Config Tips Guide - RaGEZONE Forums




Thanks you I can run the server now,

But I got connect failed :)

sPC3Ejx - Quick Config Tips Guide - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Initiate Mage
Joined
Jan 8, 2013
Messages
3
Reaction score
0
what are this errors?

help me :(

91vfkMd - Quick Config Tips Guide - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Mar 5, 2014
Messages
42
Reaction score
0
Loading sensitive words table failed: regular expression compilation failed
how do i fix this
 
Back
Top