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!

[GUIDE] Setup Warrock Server Base On (Tweek Release)

RaGEZONER Since 2004
Loyal Member
Joined
Jul 18, 2004
Messages
1,130
Reaction score
381
[GUIDE] How To Setup WarRock Server Base On (Tweek Release)


First Download All files on (Tweek Release)
http://forum.ragezone.com/f827/warrock-server-files-db-client-948710/


Extract The Server And Client on your Drive C or whatever Drive You want to use.


Download And Install Xampp 1.8.2 or 1.8.3.I use xampp 1.8.2,Because 1.8.3 doesn't support Windows XP.


Xampp 1.8.2 Link:


Apache and MySQL from Xampp must be installed.


Next Download And Install MySQL ODBC Driver 5.1.11
Link:


Next Download And Install Navicat.
I prefer to use Navicat than MYSQL GUI TOOL but its up to you where you think you can do it simple,and what you know better.


Premium Navicat Link:

When your done installing Navicat Follow This Guide:

Locate Navicat for MySQL on your desktop and open it.If its not there go to
Start/All Programs/PremiumSoft/Navicat For MySQL

I Am NoLimiT - [GUIDE] Setup Warrock Server Base On (Tweek Release) - RaGEZONE Forums

When the navicat already open,.Create New Connection

I Am NoLimiT - [GUIDE] Setup Warrock Server Base On (Tweek Release) - RaGEZONE Forums



Then follow this image

I Am NoLimiT - [GUIDE] Setup Warrock Server Base On (Tweek Release) - RaGEZONE Forums



When your connection ready you can see it left side.Right click it and choose Manage Users...

I Am NoLimiT - [GUIDE] Setup Warrock Server Base On (Tweek Release) - RaGEZONE Forums



New window will pop out,find root@localhost right click it and select Edit User.

I Am NoLimiT - [GUIDE] Setup Warrock Server Base On (Tweek Release) - RaGEZONE Forums


After that another window will pop out with some details field.Follow this image.Put your desired password and click ok.

I Am NoLimiT - [GUIDE] Setup Warrock Server Base On (Tweek Release) - RaGEZONE Forums


Next right click your connection,mine was montana like i said earlier.And click New Database.


I Am NoLimiT - [GUIDE] Setup Warrock Server Base On (Tweek Release) - RaGEZONE Forums


New window will pop out enter your database name.I use warrock.


I Am NoLimiT - [GUIDE] Setup Warrock Server Base On (Tweek Release) - RaGEZONE Forums



Then right click warrock on left side and click Execute Batch File.
I Am NoLimiT - [GUIDE] Setup Warrock Server Base On (Tweek Release) - RaGEZONE Forums


And then we need to locate the warrock database you should download the fixed database from TWEEK Release.Follow This Image.

I Am NoLimiT - [GUIDE] Setup Warrock Server Base On (Tweek Release) - RaGEZONE Forums


Click the triple (...) button.And locate this.

I Am NoLimiT - [GUIDE] Setup Warrock Server Base On (Tweek Release) - RaGEZONE Forums


And then Click okay and Start.

I Am NoLimiT - [GUIDE] Setup Warrock Server Base On (Tweek Release) - RaGEZONE Forums


When done executing database,right click the body of navicat and you will see the databases tables.

I Am NoLimiT - [GUIDE] Setup Warrock Server Base On (Tweek Release) - RaGEZONE Forums


And were done on Database :junglejane:

Wait for the next updates I will continue the server files and client side guide I just need to submit this first so avoid browser disconnection,this my 3rd times I try so lazy to start them over again when my FIREFOX CRASH.

The Continuation of the guide for (SERVER AND CLIENT SIDE INCLUDED THE WEBPAGE)

locate where you extract the server files,go to
Warrock\serverfiles\Warrock Files\LoginServer\bin\Debug

And open settings.ini
[Server]
key=d5856782db99133c224b4011b58fc620
name=EngineWar
ip=127.0.0.1(Use Local IP For Test)
toshow=1
[Database]
host=127.0.0.1
port=3306
username=root
password=(Your Navicat MySQL Password)
database=warrock (Your Database)
[Updater]
format=0
launcher=0
updater=0
client=-1
sub=0
option=0
url=http://patch.nexuswar.eu/

Then Save..

Next Go To:
Warrock\serverfiles\Warrock Files\GameServer\bin\Debug

And open gsettings.ini

[Server]
key=d5856782db99133c224b4011b58fc620
name=EngineWar
ip=127.0.0.1
esl=0
debug=1
[Database]
host=127.0.0.1
port=3306
username=root
password=(Your Navicat MySQL Password)
database=warrock(Your Database)

Then Save..

Your Done on Server Files.
To Open The server Run The Following:
Warrock\serverfiles\Warrock Files\LoginServer\bin\Debug\LoginServer.exe
Warrock\serverfiles\Warrock Files\GameServer\bin\Debug\GameServer.exe

Now Go to Your Client.
Warrock\Enginewar\system
Download And Paste This Warrock.exe Runnable.

The warrock.exe runnable already set local IP no need to hex or something,If you need to hex it to change the local IP just search for 127.0.0.1 the two same IP near together.not the first one appear on your search.

Now extract the htdocs.rar to C:/xampp/htdocs
Note: you must remove first all the files inside the htdocs folder.


after extracting open
C:\xampp\htdocs\connect.php

<?php

$host = "localhost";
$userdb = "root";
$password = "(Your Navicat SQL PASSWORD)";
$database = "warrock(Your Navicat MySQL Database)";
$version = "0.1";
$coder = "Unknown";

mysql_connect($host,$userdb,$password);
mysql_select_db($database);

if(isset($_SESSION))
{
session_start();
$uID = $_SESSION['userID'];
$uName = $_SESSION['username'];
}else{
$uID = 0;
$uName = "";
}

?>

And locate your website on your browser
or


You must start the game through Warrock.exe on System Folder of your Client.

Hope this guide will help someone.Feel free to correct if you seeing wrong,I just shared upon my knowledge and steps.

Dont hesitate to post here if you encountered some problem on configuring or setup the server.

Credits:
Tweek <--- For Files
Banbex <--- For Runnable
NoLimiT <--- For The Guide.
 
Junior Spellweaver
Joined
Jul 26, 2012
Messages
173
Reaction score
35
Re: [GUIDE] Setup Warrock Server Base on (Tweek Release)

Good guide, easy to set up and easy to work with :)
 
Newbie Spellweaver
Joined
Mar 26, 2013
Messages
27
Reaction score
2
Re: [GUIDE] Setup Warrock Server Base on (Tweek Release)

i can't register and login into website script :/ please help
 
RaGEZONER Since 2004
Loyal Member
Joined
Jul 18, 2004
Messages
1,130
Reaction score
381
Re: [GUIDE] Setup Warrock Server Base on (Tweek Release)

Thank you for guide

Welcome Mate =`)

i can't register and login into website script :/ please help
Did you follow the guide correctly?.And use xampp 1.8.2 or 1.8.3?
About the website login its not working for the meantime,some scripter working on it for now.

Try to follow this.
Go to C:\xampp\htdocs\pages
And open connect.php

<?php

$host = "localhost";
$userdb = "root";
$password = "(Your Password)";
$database = "(Your Database Name)";
$version = "0.1";
$coder = "EngineWar";

mysql_connect($host,$userdb,$password);
mysql_select_db($database);

if(isset($_SESSION))
{
session_start();
$uID = $_SESSION['userID'];
$uName = $_SESSION['username'];
}else{
$uID = 0;
$uName = "";
}

?>
 
Newbie Spellweaver
Joined
Dec 1, 2007
Messages
98
Reaction score
6
Re: [GUIDE] Setup Warrock Server Base on (Tweek Release)

Nice tut for newbies ! +like
 
Custom Title Activated
Loyal Member
Joined
Mar 26, 2009
Messages
1,778
Reaction score
1,209
Re: [GUIDE] Setup Warrock Server Base on (Tweek Release)

Thanks, man! Useful:)
 
RaGEZONER Since 2004
Loyal Member
Joined
Jul 18, 2004
Messages
1,130
Reaction score
381
Re: [GUIDE] Setup Warrock Server Base on (Tweek Release)

Nice tutorial nonetheless.
I did this easily with just WAMP and the Server files though. I find it much more quicker.
Thanks Mate,Someone appreciate this thread. =`)

Thanks, man! Useful:)

Welcome Mate =`)
 
dat face
Loyal Member
Joined
May 25, 2012
Messages
1,738
Reaction score
621
Re: [GUIDE] Setup Warrock Server Base on (Tweek Release)

hhoolllly ccoowww !! thank mate ! +1 +1 +1
 
Newbie Spellweaver
Joined
Jul 8, 2012
Messages
11
Reaction score
3
Re: [GUIDE] Setup Warrock Server Base on (Tweek Release)

Nice for people who can't figure this out by theirselfs.
 
Newbie Spellweaver
Joined
Mar 26, 2013
Messages
27
Reaction score
2
Re: [GUIDE] Setup Warrock Server Base on (Tweek Release)

i edited \connect.php pages\connect.php and inc\config.inc

but again i can't register and login :'(
 
Newbie Spellweaver
Joined
Aug 4, 2013
Messages
36
Reaction score
18
Re: [GUIDE] Setup Warrock Server Base on (Tweek Release)

I have this error

MySQL ErrCode 2 - Account

All the other pages which use db work
 
Newbie Spellweaver
Joined
Aug 4, 2013
Messages
36
Reaction score
18
Re: [GUIDE] Setup Warrock Server Base on (Tweek Release)

You received that error cause you use lower version of xampp or mysql,.Use xampp 1.8.2 and install apache and mysql from xampp.

Im using mysql 5.1 with navicat, does it still cause same problem? Because I already tried xampp
 
Back
Top