Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server > CO2 PServer Guides & Releases
You last visited: Today at 06:18

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



COPS v3 - Reborn Edition : Source & Tools [LOTF Emulator]

Discussion on COPS v3 - Reborn Edition : Source & Tools [LOTF Emulator] within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.

Reply
 
Old   #1


 
CptSky's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,434
Received Thanks: 1,147
COPS v3 - Reborn Edition : Source & Tools [LOTF Emulator]

I was cleaning my hard drive and I found an old source. The source is based on LOTF. I used it during COPS v3 (August 2008 - June 2009). After, I worked on my custom source, but I was too lazy, so I reworked a bit on this one for a short private server: COPS v3 - Reborn Edition.

The base is bad. After all, it's LOTF... The parts I coded/recoded during 2008/2009 are really bad, maybe worst than the original I was learning. And the parts I recoded during the few months I worked on it in 2010 are experimental. It was mostly a way to try some things so it's not really awesome...Trying things without waiting to finish a custom source.

I don't recommend the source as a reference and I really don't recommend the source as a base! But, if you want to work with LOTF, it's a good base.

The source is better than the original one in term of features and stability. The game server still need to be rebooted like each 2-3h, but it can support 50-75 players (already tested).

Auth Server
- Splitted from the game server
- Authentication by AccUID (FNV1 hash of the Account Name) and by Token
- Ip Banning with support of joker
- Support of multiple game server (but badly...)
- Support of Account Creator Protocol (I lost the app, you'll need to reverse the protocol)
- Sha256 password storage

Game Server
- All LOTF features are coded.
- Guild allies
- Guild enemies
- Player enemies
- Market's shop
- Pk Tour, Dis City, Guild War, Guild Beast
- Base for transform skills
- Guards (released by someone on ePvP, but a bit worked on)
- Lucky Time (Kinshi's code?)
- Binary database
- Fixed damage system
- Fixed a lot of fails
- etc



Have fun

N.B. NPCs are in french.
CptSky is offline  
Thanks
10 Users
Old 01/06/2012, 01:48   #2
 
thesamuraivega's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 125
Received Thanks: 21
Hi man Good, verción? :S
thesamuraivega is offline  
Thanks
1 User
Old 01/06/2012, 02:33   #3


 
CptSky's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,434
Received Thanks: 1,147
Quote:
Originally Posted by thesamuraivega View Post
Hi man Good, verción? :S
5017 as the original LOTF.
CptSky is offline  
Thanks
1 User
Old 01/06/2012, 02:58   #4
 
killersub's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 884
Received Thanks: 211
I see this is just a base, but a pretty **** good one.
killersub is offline  
Old 01/06/2012, 03:01   #5


 
CptSky's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,434
Received Thanks: 1,147
Quote:
Originally Posted by killersub View Post
I see this is just a base, but a pretty **** good one.
No, it's more a really complete emulator, but a really bad one. It's why I don't recommend it, but eh, if you see some good things in the project, it may be true.
CptSky is offline  
Thanks
1 User
Old 01/06/2012, 03:20   #6
 
thesamuraivega's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 125
Received Thanks: 21
good job thanks ^.^
thesamuraivega is offline  
Thanks
1 User
Old 03/15/2012, 22:29   #7
 
abdeen's Avatar
 
elite*gold: 0
Join Date: Mar 2010
Posts: 475
Received Thanks: 14
where the data base, and how to create account , and its require a special loader , or the normal one ?

thanks if anyone reply....
abdeen is offline  
Old 03/15/2012, 22:37   #8


 
CptSky's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,434
Received Thanks: 1,147
Quote:
Originally Posted by abdeen View Post
where the data base, and how to create account , and its require a special loader , or the normal one ?

thanks if anyone reply....

Source:
Auth Server -> Contains the source of the authentication server
Game Server -> Contains the source of the game server
Test Server -> Contains everything to run the server... All files are there. It's the emulator

The database is in the test server, but, for changing it, you need to regenerate the "DIF" file with the DIF-Creator in the Tools folder.

To create an account, you need to manually create it. There is an example already. (N.B. The password is hashed in SHA-256) Actually, it was working with an AccountCreator app, but I lost the app. The AuthServer still contains the protocol used.
CptSky is offline  
Thanks
1 User
Old 03/15/2012, 22:41   #9
 
abdeen's Avatar
 
elite*gold: 0
Join Date: Mar 2010
Posts: 475
Received Thanks: 14
so its dosen`t need a MySQL database ?

and can you explain more how to create account ?

and what i have to edit , dose there any config file or something like that ?
abdeen is offline  
Old 03/15/2012, 22:50   #10


 
CptSky's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,434
Received Thanks: 1,147
Quote:
Originally Posted by abdeen View Post
so its dosen`t need a MySQL database ?

and can you explain more how to create account ?

and what i have to edit , dose there any config file or something like that ?
No, the database is formed of INI file for the accounts, of custom CHR file for the character and of custom DIF files for other things.

In the "Accounts" folder of the test server, you need to create a file with the name: ACCOUNT_NAME.acc, where ACCOUNT_NAME is what you want After you'll need to write some information in it.

Code:
[Account]
AccountID=Your account name
Password=Your password hashed in SHA-256 (http://www.xorbin.com/tools/sha256-hash-calculator)
RealName=NULL
Email=NULL
Question=NULL
Answer=NULL
LogonCount=0
Token=NULL
All the config file are at the root of the Test Server with explanations. They're all INI files. Really easy to see them.
CptSky is offline  
Old 03/15/2012, 23:29   #11
 
abdeen's Avatar
 
elite*gold: 0
Join Date: Mar 2010
Posts: 475
Received Thanks: 14
Quote:
Originally Posted by CptSky View Post
No, the database is formed of INI file for the accounts, of custom CHR file for the character and of custom DIF files for other things.

In the "Accounts" folder of the test server, you need to create a file with the name: ACCOUNT_NAME.acc, where ACCOUNT_NAME is what you want After you'll need to write some information in it.

Code:
[Account]
AccountID=Your account name
Password=Your password hashed in SHA-256 (http://www.xorbin.com/tools/sha256-hash-calculator)
RealName=NULL
Email=NULL
Question=NULL
Answer=NULL
LogonCount=0
Token=NULL
All the config file are at the root of the Test Server with explanations. They're all INI files. Really easy to see them.


the password being saved first time i log in ?

after i converted "test" to hash password , and edited it into root user....

i am trying to log in , but i am getting Error: Connection with the server is interrupted. Please re-login.




===================================

Error: Connection with the server is interrupted. Please re-login.


===================================

Any Respond ?
abdeen is offline  
Old 03/16/2012, 16:53   #12


 
CptSky's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,434
Received Thanks: 1,147
Quote:
Originally Posted by abdeen View Post
the password being saved first time i log in ?

after i converted "test" to hash password , and edited it into root user....

i am trying to log in , but i am getting Error: Connection with the server is interrupted. Please re-login.




===================================

Error: Connection with the server is interrupted. Please re-login.


===================================

Any Respond ?
Make sure the config file is configured correctly. Plus, you need to create a SVR file that contains all the information of the game server. Name, IP, Port. The AuthServer can handle several game server.

The SVR files are in the Servers folder. There is a tool to create them.

PS. Yes, the configuration isn't really easy at all... But when you understand all the step, that's really easy.
CptSky is offline  
Old 03/16/2012, 17:53   #13
 
abdeen's Avatar
 
elite*gold: 0
Join Date: Mar 2010
Posts: 475
Received Thanks: 14
i edited config file , and created new servername.svr

but still the error coming up.
dose there any guide or example for setup the server with that source ?
abdeen is offline  
Old 03/16/2012, 18:57   #14


 
CptSky's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,434
Received Thanks: 1,147
Quote:
Originally Posted by abdeen View Post
i edited config file , and created new servername.svr

but still the error coming up.
dose there any guide or example for setup the server with that source ?
Be sure that the server name is the same that you try to connect to...
CptSky is offline  
Old 03/16/2012, 19:15   #15
 
abdeen's Avatar
 
elite*gold: 0
Join Date: Mar 2010
Posts: 475
Received Thanks: 14
Quote:
Originally Posted by CptSky View Post
Be sure that the server name is the same that you try to connect to...
could you spare 1 minute of your time and explain which files needed to edit , in the source side , and the client side ?

and there are a special loader for your source or what ?

and why i am getting this error ?


Error: Connection with the server is interrupted. Please re-login.
abdeen is offline  
Reply

Tags
cops, cops v3, lotf, reborn edition, source


Similar Threads Similar Threads
Help To Fix Bug In LOTF Source
07/16/2009 - CO2 Private Server - 6 Replies
i have bugs in 1st rb and 2ndrb when i got reborn and use Gears The Source was Damge Command Dont Work And Some Other Error and When i got reborn The Char Dc From Game i need Fixed The Bug PLZ
I need Reborn coding for LoTF and ToaistStar Not working
05/17/2009 - CO2 Private Server - 11 Replies
Does anyone of u have reborn 1 and 2 coding for LOTF source and also for ToaistStar skill and promotion coding?? Can someone post me the guide for reborn 1 and 2 coding and also for Toaist skill and promotion. Anyway pete your Nobility coding was great
[Release] Reborn Script (Pro Edition)
04/17/2009 - CO2 PServer Guides & Releases - 23 Replies
This is everything you need to setup Reborn in your LOTF based server source. This code doesn't have the MyClient.Drop(); since it is pointless and lame, and has extra Stats for all Jobs including Water Tao. Why Release it? - Already been released, this one is just better. What will I need? - Brain w/ common sense - LOTF source http://www.elitepvpers.com/forum/co2-main-discussio ns-questions/150327-lotf-source-guide.html]
[POLL] LOTF Source or My Own Source
09/22/2008 - CO2 Private Server - 30 Replies
Title says it, this is a poll about that i going to use my own coded source(it got the basic stuff like mobs, login, character creation, pvp, trading, hotkeys etc.....) Or using the LOTF source well everyone knows the features of that source. Please help me, because my lotf source can handle 87+ people ( i didnt test more with my friends because my internet sux atm) I realy realy hope that you guys can help me, the answer will probally be own coded source but i can make lotf realy stable...



All times are GMT +2. The time now is 06:18.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.