|
You last visited: Today at 13:38
Advertisement
[Release] Account Server Source
Discussion on [Release] Account Server Source within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.
06/18/2009, 16:11
|
#1
|
elite*gold: 0
Join Date: Nov 2008
Posts: 266
Received Thanks: 37
|
[Release] Account Server Source
Hello Guy's
I'm Releasing As i said a Source for The Account Server and the price is if u could run it up or fix it please post here .... this is the price.
Don't Forget to Press THANKS
EDIT: Link Removed Sorry it wasn/t For CO
|
|
|
06/18/2009, 16:26
|
#2
|
elite*gold: 0
Join Date: Sep 2008
Posts: 617
Received Thanks: 38
|
for binary?
|
|
|
06/18/2009, 16:28
|
#3
|
elite*gold: 0
Join Date: Nov 2008
Posts: 266
Received Thanks: 37
|
Yea it's a open source for an Account Server
|
|
|
06/18/2009, 16:36
|
#4
|
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 925
|
This is old and does not work with the new encryption.
|
|
|
06/18/2009, 16:39
|
#5
|
elite*gold: 0
Join Date: Nov 2008
Posts: 266
Received Thanks: 37
|
Quote:
|
This is old and does not work with the new encryption
|
are you sure ?
Im not sure but i think it's 2007 Copy?
|
|
|
06/18/2009, 17:11
|
#6
|
elite*gold: 0
Join Date: May 2008
Posts: 168
Received Thanks: 4
|
the acc server Good or no Good
|
|
|
06/18/2009, 17:56
|
#7
|
elite*gold: 0
Join Date: Jun 2009
Posts: 92
Received Thanks: 8
|
This is either not for conquer, or a VERY VERY VERY old encryption. It's not even the QO one.
|
|
|
06/18/2009, 18:28
|
#8
|
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 925
|
Quote:
Originally Posted by BloofyGirl
are you sure ?
Im not sure but i think it's 2007 Copy?
|
How can it be the 2007 version if it's last modified 2005 >_>
|
|
|
06/18/2009, 18:34
|
#9
|
elite*gold: 0
Join Date: Jun 2009
Posts: 92
Received Thanks: 8
|
Quote:
Originally Posted by Kiyono
How can it be the 2007 version if it's last modified 2005 >_>
|
Exactly, from what I've seen it's either the CO1/very old crypto, or a different TQ game. (Hard to tell since they're all the ******* same)
|
|
|
06/18/2009, 19:14
|
#10
|
elite*gold: 0
Join Date: Feb 2006
Posts: 261
Received Thanks: 104
|
anyone tested it?
|
|
|
06/18/2009, 19:26
|
#11
|
elite*gold: 0
Join Date: May 2008
Posts: 1,769
Received Thanks: 1,143
|
The ChangeLog starts at 2001.11.2 for one, and file modification dates go back to 2002. This is either the source to the early beta of the game (Almost unheard of, how the hell would people get it?) or just some random accServ.
EDIT
Code:
# MySQL dump 8.16
#
# Host: 192.168.1.175 Database: games
#--------------------------------------------------------
# Server version 3.23.42-nt
#
# Table structure for table 'account'
#
CREATE TABLE account (
id int(4) unsigned zerofill NOT NULL auto_increment,
name char(32) binary NOT NULL ,
sex int(4) unsigned zerofill NOT NULL ,
age int(4) unsigned zerofill NOT NULL ,
phone char(16) binary NOT NULL ,
email char(128) binary NOT NULL ,
address char(128) binary NOT NULL ,
idnumber char(32) binary NOT NULL ,
password char(16) binary NOT NULL ,
PRIMARY KEY (id),
KEY ix_name (name)
) TYPE=MyISAM;
#
# Table structure for table 'fee'
#
CREATE TABLE fee (
time_stamp char(14) binary NOT NULL default '',
server_name char(15) binary NOT NULL default '',
user_name char(15) binary NOT NULL default '',
user_id int(4) unsigned zerofill NOT NULL default '0000',
start_time char(19) binary NOT NULL default '',
last_point char(19) binary NOT NULL default '',
end_time char(19) binary NOT NULL default '',
fee_name char(15) binary NOT NULL default '',
fee_id int(4) unsigned zerofill NOT NULL default '0000',
fee_type char(15) binary NOT NULL default '',
point int(4) unsigned zerofill NOT NULL default '0000',
end_type char(15) binary NOT NULL default '',
ip_addr char(15) binary NOT NULL default ''
) TYPE=MyISAM;
# NOTE: time_stamp mast NOT be PRIMARY KEY.
# you can add some INDEX for this table.
#
# Table structure for table 'logon'
#
CREATE TABLE logon (
time_stamp char(14) binary NOT NULL default '',
account char(15) binary NOT NULL default '',
account_id int(4) unsigned zerofill NOT NULL default '0000',
fee_type int(4) unsigned zerofill NOT NULL default '0000',
server char(15) binary NOT NULL default '',
authen int(4) unsigned zerofill NOT NULL default '0000',
client_ip char(15) binary NOT NULL default '',
fee_account char(15) binary NOT NULL default '',
notify char(15) binary NOT NULL default '',
rejoin tinyint(1) unsigned zerofill NOT NULL default '0000'
) TYPE=MyISAM;
#
# Table structure for table 'serial'
#
CREATE TABLE serial (
time_stamp char(14) binary NOT NULL default '',
account_id int(4) unsigned zerofill NOT NULL default '0000',
serial int(4) unsigned zerofill NOT NULL default '0000',
serial_str varchar(15) binary NOT NULL default ''
) TYPE=MyISAM;
#表名在config.ini中[Special]配置POINTTABLE配置项指定
#
# Table structure for table 'point001'
#
#通过account_id与account关联
CREATE TABLE point001 (
account_id int(4) unsigned zerofill NOT NULL ,
type int(4) unsigned zerofill NOT NULL ,
point int(4) unsigned zerofill NOT NULL ,
pointtime int(4) unsigned zerofill NOT NULL ,
online int(4) unsigned zerofill NOT NULL ,
licence int(4) unsigned NOT NULL ,
netbar_ip char(15) ,
ip_mask char(15) ,
PRIMARY KEY (account_id)
) TYPE=MyISAM;
This source has nothing to do with CO.
|
|
|
06/18/2009, 19:46
|
#12
|
elite*gold: 0
Join Date: Jun 2009
Posts: 92
Received Thanks: 8
|
It uses TQs encryption, if you look over the CEncryptServer
|
|
|
06/18/2009, 19:51
|
#13
|
elite*gold: 0
Join Date: May 2008
Posts: 1,769
Received Thanks: 1,143
|
It's dated way too early, the only possibility is that it's for the first betas of the game. But still, that's improbable.
|
|
|
06/18/2009, 20:11
|
#14
|
elite*gold: 0
Join Date: Jun 2009
Posts: 92
Received Thanks: 8
|
Quote:
Originally Posted by Zeroxelli
It's dated way too early, the only possibility is that it's for the first betas of the game. But still, that's improbable.
|
Trust me, it's from TQ. It may not be Conquer, but it uses the same classes as the EO source. (CMsgPacket, not to mention the crypto)
|
|
|
06/18/2009, 20:39
|
#15
|
elite*gold: 0
Join Date: May 2008
Posts: 1,769
Received Thanks: 1,143
|
I didn't say it wasn't TQ, I said it wasn't CO. It could be the original beta of CO, though. Also afaik EO was released in 2006, not 2001. This source has to be from one of TQ's beta's when they started releasing their MMO's in 2000 (Only in China until late 2002/early 2003, when they branched out to other countries.), that's the only thing that makes sense.
|
|
|
 |
|
Similar Threads
|
Release DragonFlyFF Server Source
01/15/2011 - Flyff PServer Guides & Releases - 92 Replies
From RaGEZONE
Wie bekomm ich den server zum Laufen ?
Ein Paar Fixes
|
[Release]Manual Account Creator for Epvp Source
10/08/2009 - CO2 PServer Guides & Releases - 8 Replies
Hi! I made this account creator for Epvp Source released by Emme, I know it is not much of a "great" release but here it is for whoever needs it.
http://www.elitepvpers.com/forum/co2-pserver-discu ssions-questions/309749-release-conquer-source.htm l
This is set to the default path of the database as stated in the ReadMe file in the source.
Have fun.
Credits: Emme for the source/ showing some info about it, Tanel/Hadeset for doing the base of it.
Note:I made this to help ppl who can not do...
|
[Release]How To Make Tq Source Work + Working Source + Server ByBass + Commands
12/08/2008 - CO2 PServer Guides & Releases - 15 Replies
1: How To Make The Server Work
In fact, before other people did not just let ACC now with hi EACC Columbia landing on the settlement of the issue, and the rest is our own how to improve the content of those interested can improve the next. MY MY set and the same. INI MAP INI files and MAP with the client-to-date coverage of the account. server.dat ! And then as long as the client will be able to modify server.dat!
127.0.0.1 192.168.0.1 192.168.1.1 IP。 Please do generally use...
|
[Java Release with Source] Account Info Saver
11/09/2008 - CO2 Programming - 6 Replies
Hey everyone, I made a little quick program in java (It's my first one besides hello world)
Anyways, basically what this does is save an account in your Conquer(Only if it's C:\Program Files\Conquer 2.0\) folder in a file called whatever you made your LoginID.
Edit: Figured it out. Updated Attatchments
I've included the source code just as a little reference for people that are learning Java like myself.
sharing is caring.
|
[Java Release with Source] Account Info Saver & Reader
09/13/2008 - CO2 Programming - 5 Replies
Okay, i've updated the Acount Info Saver to make the files un-readable unless you use this, or just right click and open with notepad xD.
So, anyways, pretty simple, i just had it remove the .txt extension, and made this program to read the text file itself.
How to use - Just type your login ID you used to save the file with, and it should read it :)
Note to a Mod: You can delete my old thread of the Saver, or you can keep it so people can learn how to write text files in java, doesnt...
|
All times are GMT +1. The time now is 13:40.
|
|