[Release] Account Server Source

06/18/2009 16:11 BloofyGirl#1
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 sawickas#2
for binary?
06/18/2009 16:28 BloofyGirl#3
Yea it's a open source for an Account Server
06/18/2009 16:36 Kiyono#4
This is old and does not work with the new encryption.
06/18/2009 16:39 BloofyGirl#5
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 abdomiky7#6
the acc server Good or no Good
06/18/2009 17:56 _tao4229#7
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 Kiyono#8
Quote:
Originally Posted by BloofyGirl View Post
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 _tao4229#9
Quote:
Originally Posted by Kiyono View Post
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 fucking same)
06/18/2009 19:14 hepan#10
anyone tested it?
06/18/2009 19:26 Zeroxelli#11
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 _tao4229#12
It uses TQs encryption, if you look over the CEncryptServer
06/18/2009 19:51 Zeroxelli#13
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 _tao4229#14
Quote:
Originally Posted by Zeroxelli View Post
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 Zeroxelli#15
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.