4Botters


 
Go Back   4Botters" I am A Bad Ass Botter " > Online Games > Conquer Online Sections > Conquer Bots > Conquer Private Servers

Conquer Private Servers Post guides , scripts , advertise , anything related to Conquer Private Servers !

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-10-2008, 06:48 AM
Ashley's Avatar
Bad Ass Botta!
 
Join Date: Oct 2007
Location: Australia
Posts: 354
Thanks: 8
Thanked 238 Times in 88 Posts
Send a message via MSN to Ashley
Default (Guide) Making a Private Server

this is a guide on how to make a Private server, all Credit gos to Korvacs and Future
Server Information:

- Server Name: CoFuture aka CoFusion
- Authors: Korvacs & Future
- Database Type: MySql
- Inspired By: CoEmu
- Source Language: C# (C Sharp)
- Client Version: Qonquer Client (Working Fine)

Requirements:

- Microsoft Visual C# 2005 Express Edition (Recommended) other versions are available
- MySql
- Apache
- PhpMyAdmin
- Conquer Online 2.0 Client Version 4348 <-- You need this to connect

Links:

- AppServ Project (Recommended) All in 1 Package MySql. Apache, PhpMyAdmin
- Server Source from **********s
- Server Working Database from **********s

Server Port(s) (Enable these ports with your router, firewalls/windows firewall)

- Auth Server: 9960
- Game Server: 9958

Installing AppServ

- ServerName: localhost
- Password: (any password, but dont forget it because u need it to log into phpmyadmin)

Login to PHPMyAdmin

- In your webbrowser type as a url "localhost/phpmyadmin"
- Username: root || Password: (Password you set when installing)


Guide:

1. Starting

Download, Install & Extract everything

2. Adding the Database

Open PhpMyAdmin, On the left Tab Click the button that has "SQL" on it, Click Import, Browse the database you downloaded and import it.

3. Setting up server in database

Open "servers" Table then click "Browse" then edit the current server entry there (Your Servername, Your IP Address or Localhost, Server Port) Save.

4. Creating an Account

Open "accounts" Table then click "Insert" (Account UserName "your username", Leave Password Blank, Type "2" for PM, Auth "1" server to accept connection, Leave Address Blank) Save.

5. Setting up Server to connect to Database

Open "Server" folder then Open the "CoFuture" Project File then open Database.cs and press "ctrl+g" and go to line "39" change "Database Username" to your databases username then on line "40" change "Database Password" to your databases password" and then on line "44" change "Database Name" to "conquer_server" unless you changed the database name. then go to Build --> Build Solution (Solution should build successfully!)

6. Turning the Server On

Method 1. Open "bin" then "x86" then "Debug" then "COServer.exe" I Recommend this Method for Windows XP Home/Professional

Method 2. Open "bin" then "Debug" then "COServer.exe"

Method 3. Open "bin" then "Release" then "COServer.exe"

7. Adding NPC Dialogs

Which ever "COServer.exe" you use there will be a folder "Npcs" in the same directory, create a text file with the name of the npc id you assign in the database, A tutorial on how to code the dialogs down the page.

8. Adding NPC Spawns

Go into your database and go to the "npcs" table and add your npc's there. (Main city npc's already added).

9. Adding Portals

Go into your database and go to the "portals" table and add your portals there (Most portals already added).

10. Adding Shops

Go into your database and go to the "shops" table and add your shops there (Some shops added already).

11. Coding the NPC Dialogs

Quote:
Ok im currently in the process of creating my npc system,

This system will be one of the simplist npc systems out there....thats my aim anyway.

Here are the current list of available commands and their uses:

Replace <value> with whatever you want it to be so <value> becomes 50

Replace <string> with some text, for example <string> becomes: Hi there this is an example


Code:

Npcface=<value>

Set Npcface to any avatar that the game supports just like the clients faces,


Code:

Dialog=<value>

Set Dialog to whichever dialog your working on, for example the first Dialog which the client sees is Dialog=0, the client will always request Dialog 0 when you click on the npc.


Code:

Text=<string>

This is what the npc will say for the dialog, for example, if i want the npc to say "Hi there im an example npc" i would write: Text=Hi there im an example npc


Code:

Option=<string>=<value>

For this command you need to add to things, what the option will say, and where the client will be taken once they click that option, fairly simple example: Option=Goto Dialog 1=1

you can have multiple options upto a total of 8, any more will cause the client to crash (ive yet to limit this)

[random]im considering adding in functionality where by the server will create a second page, on the first page will be options 1 - 6 and a next option, when clicking next it will take you to the next page with the remaining options and a back button, however this may not happen[/random]


Code:

Finsh

Completes the Dialog, this is only require when your atualy going to display a dialog, for example if i were to just have a dialog with no text and no options the client would not be sent any information so theres no need to finsh the dialog,

this requires no finsh command:


Code:

Dialog=1
Teleport=1002 422 366

this requires a finsh command:


Code:

Dialog=1
Text=This is a test for dialog 1
Option=Example1=2
Option=Back=0
Finsh


Code:

Teleport=<value1> <value2> <value3>

This teleports the user to a target map and cordinates, value1 is the map id, value2 is the x cord and value3 is the y cord, please ensure that you do correctly set the x and y cordinates otherwise people could get into all sorts of trouble xD


Code:

Item=<value1> <value2> <value3> <value4> <value5> <value6> <value7> <value8> <value9>

The item command allows you to create items within someones inventory, i know theres alot of values x_X

value1 is the itemid, value2 is the plus, value 3 is the minus, value 4 is the enchant, value 5 is soc1, value6 is soc2, value7 is currentdura, value8 is maxdura, value9 is the amount.

yeah i know its alot to remember but i dont want to have to make changes further down the line and make modifications to loads of npcs, this system is being built to last.


Code:

FindItem=<value1>=<value2>

ok, the find item command (Added while writing this)

it will return the total amount of items it found in your inventory, value1 is the number of the variable your assigning and value2 is the itemid you want to find,

you can then access the item by using <value1>

heres an example because it can be difficult to grasp


Code:

FindItem=0=1088000
Text=You have <0> Dragonballs in your inventory


Code:

Variable=<value1>=<value2>

this allows you to assign values and use them like the find items variables,

value1 is the variable your assigning, value2 is the value,


Code:

Variable=1=1088000
Text=You have <0> <1>s in your inventory

please note that the variables you assign only exist within the dialog you assign them in.

something you assign within dialog1 will not exist within dialog2

And heres a random example npc which has abit of everything in it


Code:

NpcFace=50
Dialog=0
Text=This is a test for dialog 0
Option=Dialog1=1
Option=Find Items=4
Option=Teleport=3
Option=Create Item=2
Finsh

Dialog=1
Text=This is a test for dialog 1
Option=Dialog4=4
Option=Start=0
Finsh

Dialog=2
Item=1088000 0 0 0 0 0 1 1 1

Dialog=3
Teleport=1002 422 366

Dialog=4
FindItem=0=1088000
Variable=1=1088000
Text=You have <0> <1>s in your inventory
Option=Start=0
Option=Dialog1=1
Finsh

12. Command List

Code:

/dc
/clearinv
/save
/gm
/heal
/hp
/mana
/stamina
/reborn 0/1/2
/stats str amount
/stats vit amount
/stats spi amount
/stats agi amount
/stats all amount
/gold amount
/cp amount
/item ItemID Plus Minus Enchant GemIDSocket1 GemIDSocket2 Quality Quality
/job ID
/level level
/goto MapName (from Database)
/skill skillid level
/spell spellid level
/spawn type, type+dir, map, x, y, flag (temporary Npc)
/request charname (Request a characters info)
/where (your coordinates)
/spawnnpcs type, type+dir, map, x, y, flag (Temporary npc)
/statusfix
/invincible
/string something something something
/music on
/music off
/guild guildname bulletin
/status reset
/status
/data something something something something
/dialog something
/createguild guildname
/guildwar
/chattype something something something something
/encrypt password
/decrypt password
/getportals
/update
/addnpc type, type+dir, map, x, y, flag (Permanent)
/removenpc npcid
/npcsay message (Test Command)
/mapmode 1/2/3

Sorry for the commands that ive added something for, ive been very busy and those commands are ones korvacs added so im not as much familar with.
This file was exceeded the file limit size for this site, so heres a download link u also need the file below database , [Only registered and activated users can see links. Sorry you can't view links because you are not registered. [ Click here to register ]]
Attached Files You can't view the attachment, because you are not registered. [ Click here to register ]
__________________
Easy to be bad, Harder to be good

Last edited by Ashley; 04-10-2008 at 07:13 AM.
Reply With Quote
The Following 4 Users Say Thank You to Ashley For This Useful Post:
abdomaher (09-17-2009), gameover (04-29-2008), toxicshift (10-05-2009), zylajunior (03-28-2009)
Google Adsense
  #2 (permalink)  
Old 04-12-2008, 11:01 PM
Bottingpunk's Avatar
A Botter
 
Join Date: Dec 2007
Posts: 103
Thanks: 18
Thanked 2 Times in 1 Post
Default Re: (Guide) Making a Private Server

lol well ash i get to the part where u have to go to localhost/phpmyadmin in ur url but i put in the username root and the password i put when i downloaded that other program but it like keeps going to wrong password and im like wtf haha so i guess ill never get to make a server no mater how many tips and stuff i get or these guids =(((((
Reply With Quote
  #3 (permalink)  
Old 04-24-2008, 03:54 AM
WHITELIONX's Avatar
Bad Ass Botta!
 
Join Date: Mar 2008
Location: in conquer ^^
Age: 33
Posts: 303
Thanks: 135
Thanked 51 Times in 31 Posts
Default Re: (Guide) Making a Private Server

Client? like the 400+mb file? or just the exe i want to have a play with an offline server
Reply With Quote
  #4 (permalink)  
Old 04-24-2008, 08:11 AM
Ashley's Avatar
Bad Ass Botta!
 
Join Date: Oct 2007
Location: Australia
Posts: 354
Thanks: 8
Thanked 238 Times in 88 Posts
Send a message via MSN to Ashley
Default Re: (Guide) Making a Private Server

u need both files
__________________
Easy to be bad, Harder to be good
Reply With Quote
  #5 (permalink)  
Old 04-26-2008, 11:29 PM
WHITELIONX's Avatar
Bad Ass Botta!
 
Join Date: Mar 2008
Location: in conquer ^^
Age: 33
Posts: 303
Thanks: 135
Thanked 51 Times in 31 Posts
Default Re: (Guide) Making a Private Server

lol i got the Qonquer client installed it now if i could only install phpmyadmin im no programmer etc
Reply With Quote
  #6 (permalink)  
Old 04-28-2008, 02:05 AM
WHITELIONX's Avatar
Bad Ass Botta!
 
Join Date: Mar 2008
Location: in conquer ^^
Age: 33
Posts: 303
Thanks: 135
Thanked 51 Times in 31 Posts
Default Re: (Guide) Making a Private Server

everything like phpmyadmin etc installed now to try to install files :/:|:\
Reply With Quote
  #7 (permalink)  
Old 04-28-2008, 03:10 PM
WHITELIONX's Avatar
Bad Ass Botta!
 
Join Date: Mar 2008
Location: in conquer ^^
Age: 33
Posts: 303
Thanks: 135
Thanked 51 Times in 31 Posts
Default Re: (Guide) Making a Private Server

hmmm why is it now ive updated to 4348 i cant open my client because it says it cant autopatch ^^ i did like said about updating Qonquer client or do i even need to update it???

and how do i create an acc for it???? the best ive got so far was for the logging into servers but that was hours ago lol

now i cant remember how i even got it to do that omg please help me im using phpmyadmin with no probs mysql etc etc got the Qonquer client and just want to play on my own home server a nice very simple descriotion would help hehehe

not that the guides are hard just i think im doing something with the settings wrong :/:\
Reply With Quote
  #8 (permalink)  
Old 04-29-2008, 10:23 PM
WHITELIONX's Avatar
Bad Ass Botta!
 
Join Date: Mar 2008
Location: in conquer ^^
Age: 33
Posts: 303
Thanks: 135
Thanked 51 Times in 31 Posts
Default Re: (Guide) Making a Private Server

update now i am getting the create char screen so i create him exactly as you would do on normal Conquer then add his his name at the end then click ok it then disconnects me

then the problem is what do i do after that cause if i try to relog back in i still have to put my password in and it takes me straight back into the char selection screen again

basically all i can do is keep creating a char and not getting to birth village please help me its getting to me now :/:\
Reply With Quote
  #9 (permalink)  
Old 04-30-2008, 08:35 PM
WHITELIONX's Avatar
Bad Ass Botta!
 
Join Date: Mar 2008
Location: in conquer ^^
Age: 33
Posts: 303
Thanks: 135
Thanked 51 Times in 31 Posts
Default Re: (Guide) Making a Private Server

lol i finally did it but how do i get club lvl? and spells? im new to this sorry
Reply With Quote
  #10 (permalink)  
Old 04-30-2008, 10:50 PM
WHITELIONX's Avatar
Bad Ass Botta!
 
Join Date: Mar 2008
Location: in conquer ^^
Age: 33
Posts: 303
Thanks: 135
Thanked 51 Times in 31 Posts
Default Re: (Guide) Making a Private Server

blah all i need to know is where to find the ids of stuff like magics i found the weaps and items np lol
Reply With Quote
  #11 (permalink)  
Old 05-03-2008, 12:15 PM
WHITELIONX's Avatar
Bad Ass Botta!
 
Join Date: Mar 2008
Location: in conquer ^^
Age: 33
Posts: 303
Thanks: 135
Thanked 51 Times in 31 Posts
Default Re: (Guide) Making a Private Server

hehehe is cool i got the hang of server making lmao its easy on my third one now this one is cool cause it has a few npcs to start with

i used another source and database also but there was no npcs and it starts you with a fem char didnt like that one this one is much better and more stable.

will try this new server mobs npcs lotto etc added
Reply With Quote
  #12 (permalink)  
Old 05-03-2008, 02:13 PM
chiefcharlie's Avatar
A Botter
 
Join Date: Aug 2007
Age: 17
Posts: 237
Thanks: 22
Thanked 37 Times in 22 Posts
Default Re: (Guide) Making a Private Server

oo is ur serv public ? cus i wanan play
__________________
Bleach is my fav animie
Reply With Quote
  #13 (permalink)  
Old 05-05-2008, 08:31 PM
WHITELIONX's Avatar
Bad Ass Botta!
 
Join Date: Mar 2008
Location: in conquer ^^
Age: 33
Posts: 303
Thanks: 135
Thanked 51 Times in 31 Posts
Default Re: (Guide) Making a Private Server

Sorry server not public yet its still glitchy atm and im learning how to get the stupid reg form to work lol mysql tells me something to do with colum 1 problem :/:\
Reply With Quote
  #14 (permalink)  
Old 04-16-2010, 01:50 AM
ninjaskyler's Avatar
Noob
 
Join Date: Apr 2010
Posts: 25
Thanks: 6
Thanked 1 Time in 1 Post
Default Re: (Guide) Making a Private Server

WOW!!!!!! i didnt need a tourtial but this was the best yet
Reply With Quote
  #15 (permalink)  
Old 04-16-2010, 12:29 PM
Banned
 
Join Date: Jun 2009
Location: Wont Tell You
Posts: 705
Thanks: 53
Thanked 249 Times in 199 Posts
Default Re: (Guide) Making a Private Server

Cool Keep It Up
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump


Translate This Page

Similar Threads
Thread Thread Starter Forum Replies Last Post
Making CO Private Server USEING MYSQL WORK ON PATCH 5016/5017 MeGaMaX Conquer Private Servers 328 09-08-2010 10:09 PM
Making CO Private Server MeGaMaX Conquer Private Servers 67 07-24-2010 02:37 PM
[Help] In making a Co Private server patch 5095 Blazeken13 Help Help !! 2 12-09-2009 10:10 PM
[Guide] I need Guide for HOW MAKE A PRIVATE SERVER OF CONQUER 5095-or more noname00 Conquer Private Servers 1 11-07-2009 06:24 PM
Server file owner wants to theme making co private server asdweza Conquer Private Servers 7 04-10-2008 07:14 AM


All times are GMT. The time now is 07:56 AM.

Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.