|
You last visited: Today at 17:14
Advertisement
[2nd Tutorial] Setting up a Private Server for MapleStory
Discussion on [2nd Tutorial] Setting up a Private Server for MapleStory within the MapleStory forum part of the MMORPGs category.
05/05/2008, 23:48
|
#1
|
elite*gold: 0
Join Date: Mar 2008
Posts: 410
Received Thanks: 19
|
[2nd Tutorial] Setting up a Private Server for MapleStory
I know that this has already been posted but I'm posting hte one I used for those of you who wanna try it.
CREDITS TO Banaantje FROM ODINMS
I will explain for the people that still don't understand the other tutorials how to setup a private server.
Stuff needed:
*TitanMS Soure rev 008:
Not sure where to get this one.
*Microsoft Visual C++ 2008 Express
Download:
*Maple Story .53 Client
You shoudl already have this.
*Localhost.exe
Download:
*Navicat
Download:
*Wamp Server
Download:
What to I do now?
1) Extract the files that are in the TitanMS zip and put them in a new folder.
2)Open Notepad and paste the text below in it and save it on your desktop (as whatever.sql)
Code:
Quote:
create table users(ID int auto_increment primary key, username varchar(20), password varchar(20), pin int, gender int);
create table characters(ID int auto_increment primary key, name varchar(12), userid int, level tinyint default 1, job smallint default 0, str smallint, dex smallint, intt smallint, luk smallint, chp smallint default 50, mhp smallint default 50, cmp smallint default 50, mmp smallint default 50, ap smallint default 0, sp smallint default 0, exp smallint default 0, fame smallint default 0, map int default 0, pos smallint default 0, gender tinyint, skin tinyint, eyes int, hair int, mesos int default 0);
create table equip(equipid int, type tinyint, charid int, pos smallint default 0, slots tinyint default 7, scrolls smallint default 0, istr smallint default 0, idex smallint default 0, iint smallint default 0, iluk smallint default 0, ihp smallint default 0, imp smallint default 0, iwatk smallint default 0, imatk smallint default 0, iwdef smallint default 0, imdef smallint default 0, iacc smallint default 0, iavo smallint default 0, ihand smallint default 0, ispeed smallint default 0, ijump smallint default 0);
create table items(itemid int, charid int, inv tinyint, pos smallint, amount smallint);
create table keymap(charid int, pos0 int default 0, pos1 int default 0, pos2 int default 2564, pos3 int default 3076, pos4 int default 3332, pos5 int default 4612, pos6 int default 5380, pos7 int default 0, pos8 int default 0, pos9 int default 0, pos10 int default 0, pos11 int default 0, pos12 int default 0, pos13 int default 0, pos14 int default 0, pos15 int default 0, pos16 int default 2052, pos17 int default 1284, pos18 int default 4, pos19 int default 1028, pos20 int default 0, pos21 int default 0, pos22 int default 0, pos23 int default 260, pos24 int default 0, pos25 int default 4868, pos26 int default 3588, pos27 int default 3844, pos28 int default 0, pos29 int default 13317, pos30 int default 0, pos31 int default 516, pos32 int default 0, pos33 int default 0, pos34 int default 3456, pos35 int default 2820, pos36 int default 0, pos37 int default 772, pos38 int default 0, pos39 int default 5124, pos40 int default 4100, pos41 int default 0, pos42 int default 0, pos43 int default 2308, pos44 int default 12805, pos45 int default 13061, pos46 int default 1540, pos47 int default 0, pos48 int default 0, pos49 int default 0, pos50 int default 1796, pos51 int default 0, pos52 int default 0, pos53 int default 0, pos54 int default 0, pos55 int default 0, pos56 int default 13573, pos57 int default 0, pos58 int default 0, pos59 int default 25606, pos60 int default 25862, pos61 int default 26118, pos62 int default 26374, pos63 int default 26630, pos64 int default 26886, pos65 int default 27142, pos66 int default 0, pos67 int default 0, pos68 int default 0, pos69 int default 0, pos70 int default 0, pos71 int default 0, pos72 int default 0, pos73 int default 0, pos74 int default 0, pos75 int default 0, pos76 int default 0, pos77 int default 0, pos78 int default 0, pos79 int default 0, pos80 int default 0, pos81 int default 0, pos82 int default 0, pos83 int default 0, pos84 int default 0, pos85 int default 0, pos86 int default 0, pos87 int default 0, pos88 int default 0, pos89 int default 0);
|
3) Install Microsoft Visual C++ 2008 Express.
4) Install Wamp Server and run it
5) Install Navicat and run it.
Click "Connection".
Host name/Ip address is localhost,
Username is root,
and NO password.
Doubleclick on "localhost".
Rightclick on "localhost" and click on "New Database" and fill this in
Enter Database Name:
MapleStory
Character set:
Default character set
("Enter Database Name: MapleStory")
and click OK.
Rightclick on "MapleStory" and click on "Execute Batch File".
Select maplestory.sql you saved on your desktop. (Look at step 2!!!) and press Start.
After It's finished press "Close".
Now it will look like this when you click on "maplestory"
Now you see the tables "characters", "equip", "items", "keymap" and "users".
Quote:
ID: 1
Username: fill in the username you would like to have.
Password: fill in the password you would like to have.
Pin: Change it to 0
Gender: Change it to 0
6) Now open up Microsoft Visual C++ 2008 Express.
Click on "File" > "Open" > "File".
Go to the folder where you saved your TitanMS source.
Go to the folder "MapleStoryServer" and doubleclick on "LoginPacket.cpp".
Look for:
Code:
packet.addByte(xx); // IP
packet.addByte(xx);
packet.addByte(xx);
packet.addByte(xx);and change it to:
Code:
packet.addByte(127); // IP
packet.addByte(0);
packet.addByte(0);
packet.addByte(1);7) After you did this open MapleStoryServer.sln (also located in the titanMS source folder.:wink
Press F5 or "Build" > "Build Solution" and click Yes.
It will now starts to build. :P
If it succeeded and you didn't get any errors, you can start playing your private server!
Press the green arrow at the top in Microsoft Visual C++ 2008 Express.
A black window popups up!
Wait till Maps Initializing is finished. DON'T CLOSE IT
8 ) Download the file Localhost.exe (Look at downloads at the top).
Put the Localhost.exe in the MapleStory Folder!
Open DxWnd and add Localhost.exe (as you are used to with MapleStory.exe)
Doubleclick on localhost.exe in DxWnd! If you did everything correct you will now see MapleStory starting up! :P
Congratulations! :wink:
|
|
|
05/06/2008, 10:09
|
#2
|
elite*gold: 0
Join Date: May 2008
Posts: 49
Received Thanks: 4
|
Its TitanMS Source Ver0.08c
Btw: I finally made my own private server gonna start a new thread about it
|
|
|
05/06/2008, 13:04
|
#3
|
elite*gold: 0
Join Date: Dec 2007
Posts: 3,128
Received Thanks: 227
|
WHAT THE HELL IS THAT.. pls dont spam this forum...btw ur sig is too big, read the rules
|
|
|
05/06/2008, 13:57
|
#4
|
elite*gold: 0
Join Date: Nov 2007
Posts: 63
Received Thanks: 6
|
hello i got a question to this, i got a problem with installing virtual basic and im stuck at the part where to start the server.... can i start it by an other way too?
|
|
|
05/06/2008, 16:04
|
#5
|
elite*gold: 0
Join Date: Aug 2007
Posts: 102
Received Thanks: 7
|
yea i got this problem that when i start it all...it starts to download patch and gets stuck every singe time
what should i do?
|
|
|
05/07/2008, 03:39
|
#6
|
elite*gold: 0
Join Date: Mar 2008
Posts: 410
Received Thanks: 19
|
I don't use the Debug thing. Instead of clicking the Debug thing I scroll down in that little 3 thing list I believe and click release. See if that helps anyone.
|
|
|
05/07/2008, 08:25
|
#7
|
elite*gold: 0
Join Date: Aug 2007
Posts: 102
Received Thanks: 7
|
not helping me
|
|
|
05/07/2008, 23:23
|
#8
|
elite*gold: 0
Join Date: Mar 2008
Posts: 410
Received Thanks: 19
|
Sorry.
|
|
|
05/09/2008, 03:21
|
#9
|
elite*gold: 0
Join Date: May 2008
Posts: 1
Received Thanks: 0
|
y mysql alway fail?
|
|
|
05/09/2008, 20:34
|
#10
|
elite*gold: 0
Join Date: May 2008
Posts: 1
Received Thanks: 0
|
error?
*Localhost.exe
*wamp server
The links you gave for these are pages with Errors. Are there any other places to get what I need, I had success getting the other requirments.
nvm I found the stuff.
|
|
|
05/09/2008, 23:10
|
#11
|
elite*gold: 0
Join Date: Mar 2008
Posts: 410
Received Thanks: 19
|
Google.
|
|
|
06/05/2008, 10:06
|
#12
|
elite*gold: 0
Join Date: Jun 2008
Posts: 1
Received Thanks: 0
|
Quote:
Originally Posted by spritelleh
I know that this has already been posted but I'm posting hte one I used for those of you who wanna try it.
CREDITS TO Banaantje FROM ODINMS
I will explain for the people that still don't understand the other tutorials how to setup a private server.
Stuff needed:
*TitanMS Soure rev 008:
Not sure where to get this one.
*Microsoft Visual C++ 2008 Express
Download:
*Maple Story .53 Client
You shoudl already have this.
*Localhost.exe
Download:
*Navicat
Download:
*Wamp Server
Download:
What to I do now?
1) Extract the files that are in the TitanMS zip and put them in a new folder.
2)Open Notepad and paste the text below in it and save it on your desktop (as whatever.sql)
Code:
3) Install Microsoft Visual C++ 2008 Express.
4) Install Wamp Server and run it
5) Install Navicat and run it.
Click "Connection".
Host name/Ip address is localhost,
Username is root,
and NO password.
Doubleclick on "localhost".
Rightclick on "localhost" and click on "New Database" and fill this in
Enter Database Name:
MapleStory
Character set:
Default character set
("Enter Database Name: MapleStory")
and click OK.
Rightclick on "MapleStory" and click on "Execute Batch File".
Select maplestory.sql you saved on your desktop. (Look at step 2!!!) and press Start.
After It's finished press "Close".
Now it will look like this when you click on "maplestory"
Now you see the tables "characters", "equip", "items", "keymap" and "users".
Quote:
ID: 1
Username: fill in the username you would like to have.
Password: fill in the password you would like to have.
Pin: Change it to 0
Gender: Change it to 0
6) Now open up Microsoft Visual C++ 2008 Express.
Click on "File" > "Open" > "File".
Go to the folder where you saved your TitanMS source.
Go to the folder "MapleStoryServer" and doubleclick on "LoginPacket.cpp".
Look for:
Code:
packet.addByte(xx); // IP
packet.addByte(xx);
packet.addByte(xx);
packet.addByte(xx);and change it to:
Code:
packet.addByte(127); // IP
packet.addByte(0);
packet.addByte(0);
packet.addByte(1);7) After you did this open MapleStoryServer.sln (also located in the titanMS source folder.:wink
Press F5 or "Build" > "Build Solution" and click Yes.
It will now starts to build. :P
If it succeeded and you didn't get any errors, you can start playing your private server!
Press the green arrow at the top in Microsoft Visual C++ 2008 Express.
A black window popups up!
Wait till Maps Initializing is finished. DON'T CLOSE IT
8 ) Download the file Localhost.exe (Look at downloads at the top).
Put the Localhost.exe in the MapleStory Folder!
Open DxWnd and add Localhost.exe (as you are used to with MapleStory.exe)
Doubleclick on localhost.exe in DxWnd! If you did everything correct you will now see MapleStory starting up! :P
Congratulations! :wink:
|
your localhost.exe link doesnt work....always have error in the web page
|
|
|
06/06/2008, 05:14
|
#13
|
elite*gold: 0
Join Date: Jun 2008
Posts: 5
Received Thanks: 0
|
help me...
localhost wont download for me says cant find tjl.dll or something
and on navicat says access denied
please help me
|
|
|
06/06/2008, 14:30
|
#14
|
elite*gold: 0
Join Date: Oct 2007
Posts: 455
Received Thanks: 20
|
Open DxWnd ehm whats that `? can anyone help my im by the stap by open dxwnd and double click on localhost
|
|
|
06/12/2008, 01:17
|
#15
|
elite*gold: 0
Join Date: May 2008
Posts: 8
Received Thanks: 7
|
can you host this in the internet?
|
|
|
 |
|
Similar Threads
|
[As Requested] Video Tutorial for Setting up the Shaiya Private Server
04/24/2011 - Shaiya Private Server - 109 Replies
Tutorial Removed as i am leaving this forum Say thanx to Danco1990 for his childish behavior.
these tutorials were posted under the username ShaiyaNemesis and he refuses to change his to something else even though i had it first so since i don't want his childish behavior to leak over on to me i am not him nor do i have anything to do with his server. he just took the name i was using and used it for his server as well. PEACE and Good Luck.
P.S. to see the post's this refers to look here...
|
[Help] Setting Up a Private Server
08/26/2010 - EO PServer Hosting - 5 Replies
Please i need someone to help me set up a private server from the scratch step-by-step or using a video tutorial coz i searched alot but the guides i found couldn't satisfy me :confused:, i need help in how to connect the server? using hamachi or not, creating a webpage, setting up the rates and so on, coz i really wanna make a server for myself,
If there is any one interested in guiding me please let me know and i will be very grateful ;)
|
All times are GMT +1. The time now is 17:15.
|
|