Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > 9Dragons
You last visited: Today at 20:40

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

Advertisement



sever code ?

Discussion on sever code ? within the 9Dragons forum part of the MMORPGs category.

Reply
 
Old   #1
 
thai0101's Avatar
 
elite*gold: 0
Join Date: Dec 2011
Posts: 224
Received Thanks: 81
sever code ?

a friend send me this sever code and tell me that :"if u want to creat sever file, let's use this" can some1 tell me about his hint ?

PHP Code:
-- MySQL Administrator dump 1.4
--
-- ------------------------------------------------------
-- 
Server version    5.0.88-community-nt


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;


--
-- 
Create schema odinms
--

CREATE DATABASE IF NOT EXISTS odinms;
USE 
odinms;

--
-- 
Definition of table `accounts`
--

DROP TABLE IF EXISTS `accounts`;
CREATE TABLE `accounts` (
  `
idint(11NOT NULL auto_increment,
  `
namevarchar(13NOT NULL default '',
  `
passwordvarchar(128NOT NULL default '',
  `
saltvarchar(128) default NULL,
  `
pinvarchar(10) default NULL,
  `
picvarchar(26) default NULL,
  `
loggedintinyint(4NOT NULL default '0',
  `
lastlogintimestamp NULL default NULL,
  `
createdattimestamp NOT NULL default CURRENT_TIMESTAMP,
  `
birthdaydate NOT NULL default '0000-00-00',
  `
bannedtinyint(1NOT NULL default '0',
  `
banreasontext,
  `
gmtinyint(1NOT NULL default '0',
  `
macstinytext,
  `
nxCreditint(11) default NULL,
  `
maplePointint(11) default NULL,
  `
nxPrepaidint(11) default NULL,
  `
characterslotstinyint(2NOT NULL default '5',
  `
gendertinyint(2NOT NULL default '10',
  `
tempbantimestamp NOT NULL default '0000-00-00 00:00:00',
  `
greasontinyint(4NOT NULL default '0',
  `
lastknowniptinytext,
  `
deletedint(11NOT NULL default '0',
  `
emailvarchar(45) default NULL,
  `
webadminint(1) default '0',
  `
donationpointsint(11NOT NULL default '0',
  `
votepointsint(11NOT NULL default '0',
  
PRIMARY KEY  (`id`),
  
UNIQUE KEY `name` (`name`),
  
KEY `ranking1` (`id`,`banned`,`gm`)
ENGINE=InnoDB AUTO_INCREMENT=DEFAULT CHARSET=latin1;

--
-- 
Dumping data for table `accounts`
--

/*!40000 ALTER TABLE `accounts` DISABLE KEYS */;
INSERT INTO `accounts` (`id`,`name`,`password`,`salt`,`pin`,`pic`,`loggedin`,`lastlogin`,`createdat`,`birthday`,`banned`,`banreason`,`gm`,`macs`,`nxCredit`,`maplePoint`,`nxPrepaid`,`characterslots`,`gender`,`tempban`,`greason`,`lastknownip`,`deleted`,`email`,`webadmin`,`donationpoints`,`votepoints`) VALUES 
 
(3,'admin','d033e22ae348aeb5660fc2140aec35850c4da997',NULL,NULL,NULL,0,'2011-07-24 22:11:22','2011-07-24 21:20:40','0000-00-00',0,NULL,5,'00-23-14-03-2E-CC, 02-00-4C-4F-4F-50',0,0,0,5,0,'0000-00-00 00:00:00',0,'127.0.0.1',0,NULL,0,0,0);
/*!40000 ALTER TABLE `accounts` ENABLE KEYS */;


--
-- 
Definition of table `alliance`
--

DROP TABLE IF EXISTS `alliance`;
CREATE TABLE `alliance` (
  `
idint(10unsigned NOT NULL auto_increment,
  `
namevarchar(13NOT NULL,
  `
noticevarchar(128NOT NULL default '',
  `
capacityint(10unsigned NOT NULL default '2',
  `
rank_title1varchar(45NOT NULL default 'Master',
  `
rank_title2varchar(45NOT NULL default 'Jr.Master',
  `
rank_title3varchar(45NOT NULL default 'Member',
  `
rank_title4varchar(45NOT NULL default 'Member',
  `
rank_title5varchar(45NOT NULL default 'Member',
  `
guild1int(10NOT NULL default '-1',
  `
guild2int(10NOT NULL default '-1',
  `
guild3int(10NOT NULL default '-1',
  `
guild4int(10NOT NULL default '-1',
  `
guild5int(10NOT NULL default '-1',
  
PRIMARY KEY  (`id`)
ENGINE=InnoDB DEFAULT CHARSET=latin1
PHP Code:
--
-- 
Dumping data for table `alliance`
--

/*!40000 ALTER TABLE `alliance` DISABLE KEYS */;
/*!40000 ALTER TABLE `alliance` ENABLE KEYS */;


--
-- 
Definition of table `bbs_replies`
--

DROP TABLE IF EXISTS `bbs_replies`;
CREATE TABLE `bbs_replies` (
  `
replyidint(10unsigned NOT NULL auto_increment,
  `
threadidint(10unsigned NOT NULL,
  `
postercidint(10unsigned NOT NULL,
  `
timestampbigint(20unsigned NOT NULL,
  `
contentvarchar(26NOT NULL default '',
  
PRIMARY KEY  (`replyid`)
ENGINE=InnoDB DEFAULT CHARSET=latin1
PHP Code:
--
-- 
Dumping data for table `alliance`
--

/*!40000 ALTER TABLE `alliance` DISABLE KEYS */;
/*!40000 ALTER TABLE `alliance` ENABLE KEYS */;


--
-- 
Definition of table `bbs_replies`
--

DROP TABLE IF EXISTS `bbs_replies`;
CREATE TABLE `bbs_replies` (
  `
replyidint(10unsigned NOT NULL auto_increment,
  `
threadidint(10unsigned NOT NULL,
  `
postercidint(10unsigned NOT NULL,
  `
timestampbigint(20unsigned NOT NULL,
  `
contentvarchar(26NOT NULL default '',
  
PRIMARY KEY  (`replyid`)
ENGINE=InnoDB DEFAULT CHARSET=latin1
PHP Code:
--
-- 
Dumping data for table `bbs_replies`
--

/*!40000 ALTER TABLE `bbs_replies` DISABLE KEYS */;
/*!40000 ALTER TABLE `bbs_replies` ENABLE KEYS */
PHP Code:
--
-- 
Definition of table `bbs_threads`
--

DROP TABLE IF EXISTS `bbs_threads`;
CREATE TABLE `bbs_threads` (
  `
threadidint(10unsigned NOT NULL auto_increment,
  `
postercidint(10unsigned NOT NULL,
  `
namevarchar(26NOT NULL default '',
  `
timestampbigint(20unsigned NOT NULL,
  `
iconsmallint(5unsigned NOT NULL,
  `
replycountsmallint(5unsigned NOT NULL default '0',
  `
startposttext NOT NULL,
  `
guildidint(10unsigned NOT NULL,
  `
localthreadidint(10unsigned NOT NULL,
  
PRIMARY KEY  (`threadid`)
ENGINE=InnoDB DEFAULT CHARSET=latin1
PHP Code:
--
-- 
Definition of table `bbs_threads`
--

DROP TABLE IF EXISTS `bbs_threads`;
CREATE TABLE `bbs_threads` (
  `
threadidint(10unsigned NOT NULL auto_increment,
  `
postercidint(10unsigned NOT NULL,
  `
namevarchar(26NOT NULL default '',
  `
timestampbigint(20unsigned NOT NULL,
  `
iconsmallint(5unsigned NOT NULL,
  `
replycountsmallint(5unsigned NOT NULL default '0',
  `
startposttext NOT NULL,
  `
guildidint(10unsigned NOT NULL,
  `
localthreadidint(10unsigned NOT NULL,
  
PRIMARY KEY  (`threadid`)
ENGINE=InnoDB DEFAULT CHARSET=latin1
PHP Code:
--
-- 
Dumping data for table `bbs_threads`
--

/*!40000 ALTER TABLE `bbs_threads` DISABLE KEYS */;
/*!40000 ALTER TABLE `bbs_threads` ENABLE KEYS */;


--
-- 
Definition of table `buddies`
--

DROP TABLE IF EXISTS `buddies`;
CREATE TABLE `buddies` (
  `
idint(11NOT NULL auto_increment,
  `
characteridint(11NOT NULL,
  `
buddyidint(11NOT NULL,
  `
pendingtinyint(4NOT NULL default '0',
  `
groupvarchar(13) default '0',
  
PRIMARY KEY  (`id`),
  
KEY `buddies_ibfk_1` (`characterid`),
  
CONSTRAINT `buddies_ibfk_1FOREIGN KEY (`characterid`) REFERENCES `characters` (`id`) ON DELETE CASCADE
ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- 
Dumping data for table `buddies`
--

/*!40000 ALTER TABLE `buddies` DISABLE KEYS */;
/*!40000 ALTER TABLE `buddies` ENABLE KEYS */;


--
-- 
Definition of table `channelconfig`
--

DROP TABLE IF EXISTS `channelconfig`;
CREATE TABLE `channelconfig` (
  `
channelconfigidint(10unsigned NOT NULL auto_increment,
  `
channelidint(10unsigned NOT NULL default '0',
  `
nametinytext NOT NULL,
  `
valuetinytext NOT NULL,
  
PRIMARY KEY  (`channelconfigid`),
  
KEY `channelid` (`channelid`),
  
CONSTRAINT `channelconfig_ibfk_1FOREIGN KEY (`channelid`) REFERENCES `channels` (`channelid`) ON DELETE CASCADE
ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1;

--
-- 
Dumping data for table `channelconfig`
--

/*!40000 ALTER TABLE `channelconfig` DISABLE KEYS */;
INSERT INTO `channelconfig` (`channelconfigid`,`channelid`,`name`,`value`) VALUES 
 
(1,2,'channel.net.port','7576'),
 (
2,3,'channel.net.port','7577'),
 (
3,4,'channel.net.port','7578'),
 (
4,5,'channel.net.port','7589'),
 (
5,6,'channel.net.port','7590'),
 (
6,7,'channel.net.port','7591'),
 (
7,8,'channel.net.port','7592'),
 (
8,9,'channel.net.port','7593'),
 (
9,10,'channel.net.port','7594'),
 (
10,11,'channel.net.port','7595'),
 (
11,12,'channel.net.port','7596'),
 (
12,13,'channel.net.port','7597'),
 (
13,14,'channel.net.port','7598'),
 (
14,15,'channel.net.port','7599'),
 (
15,16,'channel.net.port','7600'),
 (
16,17,'channel.net.port','7601'),
 (
17,18,'channel.net.port','7602'),
 (
18,19,'channel.net.port','7603'),
 (
19,20,'channel.net.port','7604');
/*!40000 ALTER TABLE `channelconfig` ENABLE KEYS */
PHP Code:
--
-- 
Dumping data for table `bbs_threads`
--

/*!40000 ALTER TABLE `bbs_threads` DISABLE KEYS */;
/*!40000 ALTER TABLE `bbs_threads` ENABLE KEYS */;


--
-- 
Definition of table `buddies`
--

DROP TABLE IF EXISTS `buddies`;
CREATE TABLE `buddies` (
  `
idint(11NOT NULL auto_increment,
  `
characteridint(11NOT NULL,
  `
buddyidint(11NOT NULL,
  `
pendingtinyint(4NOT NULL default '0',
  `
groupvarchar(13) default '0',
  
PRIMARY KEY  (`id`),
  
KEY `buddies_ibfk_1` (`characterid`),
  
CONSTRAINT `buddies_ibfk_1FOREIGN KEY (`characterid`) REFERENCES `characters` (`id`) ON DELETE CASCADE
ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- 
Dumping data for table `buddies`
--

/*!40000 ALTER TABLE `buddies` DISABLE KEYS */;
/*!40000 ALTER TABLE `buddies` ENABLE KEYS */;


--
-- 
Definition of table `channelconfig`
--

DROP TABLE IF EXISTS `channelconfig`;
CREATE TABLE `channelconfig` (
  `
channelconfigidint(10unsigned NOT NULL auto_increment,
  `
channelidint(10unsigned NOT NULL default '0',
  `
nametinytext NOT NULL,
  `
valuetinytext NOT NULL,
  
PRIMARY KEY  (`channelconfigid`),
  
KEY `channelid` (`channelid`),
  
CONSTRAINT `channelconfig_ibfk_1FOREIGN KEY (`channelid`) REFERENCES `channels` (`channelid`) ON DELETE CASCADE
ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1;

--
-- 
Dumping data for table `channelconfig`
--

/*!40000 ALTER TABLE `channelconfig` DISABLE KEYS */;
INSERT INTO `channelconfig` (`channelconfigid`,`channelid`,`name`,`value`) VALUES 
 
(1,2,'channel.net.port','7576'),
 (
2,3,'channel.net.port','7577'),
 (
3,4,'channel.net.port','7578'),
 (
4,5,'channel.net.port','7589'),
 (
5,6,'channel.net.port','7590'),
 (
6,7,'channel.net.port','7591'),
 (
7,8,'channel.net.port','7592'),
 (
8,9,'channel.net.port','7593'),
 (
9,10,'channel.net.port','7594'),
 (
10,11,'channel.net.port','7595'),
 (
11,12,'channel.net.port','7596'),
 (
12,13,'channel.net.port','7597'),
 (
13,14,'channel.net.port','7598'),
 (
14,15,'channel.net.port','7599'),
 (
15,16,'channel.net.port','7600'),
 (
16,17,'channel.net.port','7601'),
 (
17,18,'channel.net.port','7602'),
 (
18,19,'channel.net.port','7603'),
 (
19,20,'channel.net.port','7604');
/*!40000 ALTER TABLE `channelconfig` ENABLE KEYS */
PHP Code:
--
-- 
Definition of table `channels`
--

DROP TABLE IF EXISTS `channels`;
CREATE TABLE `channels` (
  `
channelidint(10unsigned NOT NULL auto_increment,
  `
worldint(11NOT NULL default '0',
  `
numberint(11) default NULL,
  `
keyvarchar(40NOT NULL default '',
  
PRIMARY KEY  (`channelid`)
ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=latin1;

--
-- 
Dumping data for table `channels`
--

/*!40000 ALTER TABLE `channels` DISABLE KEYS */;
INSERT INTO `channels` (`channelid`,`world`,`number`,`key`) VALUES 
 
(1,0,1,'2062e90b3ea10a86ff666a76c41aa0d9e9d88f4e'),
 (
2,0,2,'5dfc64fff3b07c7c01ebd39706ec3cf3e6c37464'),
 (
3,0,3,'f47ef28d4a014d8de91de9f28ae6fcd52dfb5f77'),
 (
4,0,4,'33fd56a7b827c7b0b2df8ea1224521cd7c00e4e4'),
 (
5,0,5,'113f78f519e010e65853241bfcb14450c4fccb66'),
 (
6,0,6,'4abba5486022346a2b309c1c2ea6a0da41a88090'),
 (
7,0,7,'76134d11fe0c2b337e2b786bfcc738b975fcf40a'),
 (
8,0,8,'5688c244c56a884a50984130a17d0b61d06743a3'),
 (
9,0,9,'6e59a6559033c70b98148f1bd67e1b63aaeedf30'),
 (
10,0,10,'603dd499e4b134bf9925600b7f150644f9e9a50b'),
 (
11,0,11,'b48f4c3c803f58950b005d785cf828027a83eac4'),
 (
12,0,12,'52a9458618abed6a42e228b33ade9cdf5ded10b4'),
 (
13,0,13,'190535a9ffb4d4d688ac1f3fa7dc09a6c81c3b86'),
 (
14,0,14,'5ce2b432ac85290b411ef0975b96712c1c35591a'),
 (
15,0,15,'7d8bae4945561008426174be907142196ed84275'),
 (
16,0,16,'da0517603d42ce6f9d9bdf4871bc1ecbf7a20c3c'),
 (
17,0,17,'87c56d1e33cf26f48ac76f1bd76b6637cddd9548'),
 (
18,0,18,'fbce35ee8db37d9bf02f444c65e49fb8a9685c28'),
 (
19,0,19,'51a2bb10ecf4e2e28fe62b405106baadb0d11090'),
 (
20,0,20,'9a071c700e4c051c354817f7e2482d148380d574');
/*!40000 ALTER TABLE `channels` ENABLE KEYS */;


--
-- 
Definition of table `char_area_info`
--

DROP TABLE IF EXISTS `char_area_info`;
CREATE TABLE `char_area_info` (
  `
idint(11NOT NULL auto_increment,
  `
charidint(11NOT NULL,
  `
infoidint(11NOT NULL,
  `
area_datavarchar(120NOT NULL,
  
PRIMARY KEY  (`id`),
  
KEY `cid` (`charid`)
ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- 
Dumping data for table `char_area_info`
--

/*!40000 ALTER TABLE `char_area_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `char_area_info` ENABLE KEYS */;


--
-- 
Definition of table `characters`
--

DROP TABLE IF EXISTS `characters`;
CREATE TABLE `characters` (
  `
idint(11NOT NULL auto_increment,
  `
accountidint(11NOT NULL default '0',
  `
worldint(11NOT NULL default '0',
  `
namevarchar(13NOT NULL default '',
  `
levelint(11NOT NULL default '0',
  `
expint(11NOT NULL default '0',
  `
gachaexpint(11NOT NULL default '0',
  `
strint(11NOT NULL default '0',
  `
dexint(11NOT NULL default '0',
  `
lukint(11NOT NULL default '0',
  `
intint(11NOT NULL default '0',
  `
hpint(11NOT NULL default '0',
  `
mpint(11NOT NULL default '0',
  `
maxhpint(11NOT NULL default '0',
  `
maxmpint(11NOT NULL default '0',
  `
mesoint(11NOT NULL default '0',
  `
hpMpUsedint(11unsigned NOT NULL default '0',
  `
jobint(11NOT NULL default '0',
  `
skincolorint(11NOT NULL default '0',
  `
genderint(11NOT NULL default '0',
  `
fameint(11NOT NULL default '0',
  `
hairint(11NOT NULL default '0',
  `
faceint(11NOT NULL default '0',
  `
apint(11NOT NULL default '0',
  `
spint(11NOT NULL default '0',
  `
mapint(11NOT NULL default '0',
  `
spawnpointint(11NOT NULL default '0',
  `
gmtinyint(1NOT NULL default '0',
  `
partyint(11NOT NULL default '0',
  `
buddyCapacityint(11NOT NULL default '25',
  `
createdatetimestamp NOT NULL default CURRENT_TIMESTAMP,
  `
rankint(10unsigned NOT NULL default '1',
  `
rankMoveint(11NOT NULL default '0',
  `
jobRankint(10unsigned NOT NULL default '1',
  `
jobRankMoveint(11NOT NULL default '0',
  `
guildidint(10unsigned NOT NULL default '0',
  `
guildrankint(10unsigned NOT NULL default '5',
  `
messengeridint(10unsigned NOT NULL default '0',
  `
messengerpositionint(10unsigned NOT NULL default '4',
  `
mountlevelint(9NOT NULL default '1',
  `
mountexpint(9NOT NULL default '0',
  `
mounttirednessint(9NOT NULL default '0',
  `
omokwinsint(11NOT NULL default '0',
  `
omoklossesint(11NOT NULL default '0',
  `
omoktiesint(11NOT NULL default '0',
  `
matchcardwinsint(11NOT NULL default '0',
  `
matchcardlossesint(11NOT NULL default '0',
  `
matchcardtiesint(11NOT NULL default '0',
  `
MerchantMesosint(11) default '0',
  `
HasMerchanttinyint(1) default '0',
  `
equipslotsint(11NOT NULL default '24',
  `
useslotsint(11NOT NULL default '24',
  `
setupslotsint(11NOT NULL default '24',
  `
etcslotsint(11NOT NULL default '24',
  `
familyIdint(11NOT NULL default '-1',
  `
monsterbookcoverint(11NOT NULL default '0',
  `
allianceRankint(10NOT NULL default '5',
  `
vanquisherStageint(11unsigned NOT NULL default '0',
  `
dojoPointsint(11unsigned NOT NULL default '0',
  `
lastDojoStageint(10unsigned NOT NULL default '0',
  `
finishedDojoTutorialtinyint(1unsigned NOT NULL default '0',
  `
vanquisherKillsint(11unsigned NOT NULL default '0',
  `
summonValueint(11unsigned NOT NULL default '0',
  `
rebornsint(10unsigned NOT NULL default '0',
  `
pvpkillsint(10unsigned NOT NULL default '0',
  `
pvpdeathsint(10unsigned NOT NULL default '0',
  `
dollarsint(10unsigned NOT NULL default '0',
  `
sharelotsint(10unsigned NOT NULL default '0',
  `
deletedint(11NOT NULL default '0',
  `
eventpointsint(11NOT NULL default '0',
  `
occupationint(11NOT NULL default '0',
  `
bankmesosvarchar(500NOT NULL default '0',
  `
gamblerEXPint(11NOT NULL default '0',
  `
newexprateint(11NOT NULL default '0',
  `
newmesorateint(11NOT NULL default '0',
  `
newdroprateint(11NOT NULL default '0',
  `
marriedint(11NOT NULL default '0',
  `
partneridint(11NOT NULL default '0',
  `
butterflynetint(11NOT NULL default '1',
  
PRIMARY KEY  (`id`),
  
KEY `accountid` (`accountid`),
  
KEY `party` (`party`),
  
KEY `ranking1` (`level`,`exp`),
  
KEY `ranking2` (`gm`,`job`)
ENGINE=InnoDB AUTO_INCREMENT=DEFAULT CHARSET=latin1 PACK_KEYS=0
PHP Code:
--
-- 
Definition of table `channels`
--

DROP TABLE IF EXISTS `channels`;
CREATE TABLE `channels` (
  `
channelidint(10unsigned NOT NULL auto_increment,
  `
worldint(11NOT NULL default '0',
  `
numberint(11) default NULL,
  `
keyvarchar(40NOT NULL default '',
  
PRIMARY KEY  (`channelid`)
ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=latin1;

--
-- 
Dumping data for table `channels`
--

/*!40000 ALTER TABLE `channels` DISABLE KEYS */;
INSERT INTO `channels` (`channelid`,`world`,`number`,`key`) VALUES 
 
(1,0,1,'2062e90b3ea10a86ff666a76c41aa0d9e9d88f4e'),
 (
2,0,2,'5dfc64fff3b07c7c01ebd39706ec3cf3e6c37464'),
 (
3,0,3,'f47ef28d4a014d8de91de9f28ae6fcd52dfb5f77'),
 (
4,0,4,'33fd56a7b827c7b0b2df8ea1224521cd7c00e4e4'),
 (
5,0,5,'113f78f519e010e65853241bfcb14450c4fccb66'),
 (
6,0,6,'4abba5486022346a2b309c1c2ea6a0da41a88090'),
 (
7,0,7,'76134d11fe0c2b337e2b786bfcc738b975fcf40a'),
 (
8,0,8,'5688c244c56a884a50984130a17d0b61d06743a3'),
 (
9,0,9,'6e59a6559033c70b98148f1bd67e1b63aaeedf30'),
 (
10,0,10,'603dd499e4b134bf9925600b7f150644f9e9a50b'),
 (
11,0,11,'b48f4c3c803f58950b005d785cf828027a83eac4'),
 (
12,0,12,'52a9458618abed6a42e228b33ade9cdf5ded10b4'),
 (
13,0,13,'190535a9ffb4d4d688ac1f3fa7dc09a6c81c3b86'),
 (
14,0,14,'5ce2b432ac85290b411ef0975b96712c1c35591a'),
 (
15,0,15,'7d8bae4945561008426174be907142196ed84275'),
 (
16,0,16,'da0517603d42ce6f9d9bdf4871bc1ecbf7a20c3c'),
 (
17,0,17,'87c56d1e33cf26f48ac76f1bd76b6637cddd9548'),
 (
18,0,18,'fbce35ee8db37d9bf02f444c65e49fb8a9685c28'),
 (
19,0,19,'51a2bb10ecf4e2e28fe62b405106baadb0d11090'),
 (
20,0,20,'9a071c700e4c051c354817f7e2482d148380d574');
/*!40000 ALTER TABLE `channels` ENABLE KEYS */;


--
-- 
Definition of table `char_area_info`
--

DROP TABLE IF EXISTS `char_area_info`;
CREATE TABLE `char_area_info` (
  `
idint(11NOT NULL auto_increment,
  `
charidint(11NOT NULL,
  `
infoidint(11NOT NULL,
  `
area_datavarchar(120NOT NULL,
  
PRIMARY KEY  (`id`),
  
KEY `cid` (`charid`)
ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- 
Dumping data for table `char_area_info`
--

/*!40000 ALTER TABLE `char_area_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `char_area_info` ENABLE KEYS */;


--
-- 
Definition of table `characters`
--

DROP TABLE IF EXISTS `characters`;
CREATE TABLE `characters` (
  `
idint(11NOT NULL auto_increment,
  `
accountidint(11NOT NULL default '0',
  `
worldint(11NOT NULL default '0',
  `
namevarchar(13NOT NULL default '',
  `
levelint(11NOT NULL default '0',
  `
expint(11NOT NULL default '0',
  `
gachaexpint(11NOT NULL default '0',
  `
strint(11NOT NULL default '0',
  `
dexint(11NOT NULL default '0',
  `
lukint(11NOT NULL default '0',
  `
intint(11NOT NULL default '0',
  `
hpint(11NOT NULL default '0',
  `
mpint(11NOT NULL default '0',
  `
maxhpint(11NOT NULL default '0',
  `
maxmpint(11NOT NULL default '0',
  `
mesoint(11NOT NULL default '0',
  `
hpMpUsedint(11unsigned NOT NULL default '0',
  `
jobint(11NOT NULL default '0',
  `
skincolorint(11NOT NULL default '0',
  `
genderint(11NOT NULL default '0',
  `
fameint(11NOT NULL default '0',
  `
hairint(11NOT NULL default '0',
  `
faceint(11NOT NULL default '0',
  `
apint(11NOT NULL default '0',
  `
spint(11NOT NULL default '0',
  `
mapint(11NOT NULL default '0',
  `
spawnpointint(11NOT NULL default '0',
  `
gmtinyint(1NOT NULL default '0',
  `
partyint(11NOT NULL default '0',
  `
buddyCapacityint(11NOT NULL default '25',
  `
createdatetimestamp NOT NULL default CURRENT_TIMESTAMP,
  `
rankint(10unsigned NOT NULL default '1',
  `
rankMoveint(11NOT NULL default '0',
  `
jobRankint(10unsigned NOT NULL default '1',
  `
jobRankMoveint(11NOT NULL default '0',
  `
guildidint(10unsigned NOT NULL default '0',
  `
guildrankint(10unsigned NOT NULL default '5',
  `
messengeridint(10unsigned NOT NULL default '0',
  `
messengerpositionint(10unsigned NOT NULL default '4',
  `
mountlevelint(9NOT NULL default '1',
  `
mountexpint(9NOT NULL default '0',
  `
mounttirednessint(9NOT NULL default '0',
  `
omokwinsint(11NOT NULL default '0',
  `
omoklossesint(11NOT NULL default '0',
  `
omoktiesint(11NOT NULL default '0',
  `
matchcardwinsint(11NOT NULL default '0',
  `
matchcardlossesint(11NOT NULL default '0',
  `
matchcardtiesint(11NOT NULL default '0',
  `
MerchantMesosint(11) default '0',
  `
HasMerchanttinyint(1) default '0',
  `
equipslotsint(11NOT NULL default '24',
  `
useslotsint(11NOT NULL default '24',
  `
setupslotsint(11NOT NULL default '24',
  `
etcslotsint(11NOT NULL default '24',
  `
familyIdint(11NOT NULL default '-1',
  `
monsterbookcoverint(11NOT NULL default '0',
  `
allianceRankint(10NOT NULL default '5',
  `
vanquisherStageint(11unsigned NOT NULL default '0',
  `
dojoPointsint(11unsigned NOT NULL default '0',
  `
lastDojoStageint(10unsigned NOT NULL default '0',
  `
finishedDojoTutorialtinyint(1unsigned NOT NULL default '0',
  `
vanquisherKillsint(11unsigned NOT NULL default '0',
  `
summonValueint(11unsigned NOT NULL default '0',
  `
rebornsint(10unsigned NOT NULL default '0',
  `
pvpkillsint(10unsigned NOT NULL default '0',
  `
pvpdeathsint(10unsigned NOT NULL default '0',
  `
dollarsint(10unsigned NOT NULL default '0',
  `
sharelotsint(10unsigned NOT NULL default '0',
  `
deletedint(11NOT NULL default '0',
  `
eventpointsint(11NOT NULL default '0',
  `
occupationint(11NOT NULL default '0',
  `
bankmesosvarchar(500NOT NULL default '0',
  `
gamblerEXPint(11NOT NULL default '0',
  `
newexprateint(11NOT NULL default '0',
  `
newmesorateint(11NOT NULL default '0',
  `
newdroprateint(11NOT NULL default '0',
  `
marriedint(11NOT NULL default '0',
  `
partneridint(11NOT NULL default '0',
  `
butterflynetint(11NOT NULL default '1',
  
PRIMARY KEY  (`id`),
  
KEY `accountid` (`accountid`),
  
KEY `party` (`party`),
  
KEY `ranking1` (`level`,`exp`),
  
KEY `ranking2` (`gm`,`job`)
ENGINE=InnoDB AUTO_INCREMENT=DEFAULT CHARSET=latin1 PACK_KEYS=0
do not spam here ... i still posting !
thai0101 is offline  
Old 01/19/2012, 14:13   #2
 
elite*gold: 0
Join Date: Feb 2008
Posts: 185
Received Thanks: 35
I don't know what your friend told you , but this doesnt seem to be related to 9Dragons and i doubt the server code from another game would match for 9Dragons.
djsysulica is offline  
Old 01/19/2012, 16:05   #3
 
thai0101's Avatar
 
elite*gold: 0
Join Date: Dec 2011
Posts: 224
Received Thanks: 81
yes ! i mean somethings could be same ... like sever file ... still posting
thai0101 is offline  
Old 01/22/2012, 23:06   #4
 
elite*gold: 0
Join Date: Dec 2011
Posts: 15
Received Thanks: 5
Doesn't look anything like the server code for 9D so I doubt this will be of any help, props for posting though, could maybe help someone I don't know..
Evanx is offline  
Old 01/23/2012, 10:15   #5
 
elite*gold: 0
Join Date: Apr 2011
Posts: 122
Received Thanks: 33
this code SQL for WoW not 9D ...

just stop
manlive is offline  
Reply


Similar Threads Similar Threads
Hay suche 2010er Sever Files für einen Root sever
09/02/2011 - Metin2 Private Server - 4 Replies
Hallo Liebe Epvp Member Also ich hab kürzlich beschlossen mit einem Freund einen eigenen Metin2 Root Sever zu machen wir haben schon alles, Aber wir wissen nicht welche 2010er Sever Files geeignet dafür ist Die ein sagen die hat zu viele Buggs usw Kann mir eine infos geben welche dafür geeignet ist oder in Skype addy Wenns geht Heute noch :D oder jetzt noch Wen das Thema im Falschen bereich ist dann tuts mir leid :D
How Do you change metin p sever Welcome Message? when a player first log on the sever
07/04/2011 - Metin2 - 2 Replies
like i said on title how do you change the entrace of the sever to the name i wanna put it plz i need help with this if their a video or etc or someone who can write it out step by step will be nice plz:D help me so when people log on they see the name i put and not the name of some other person etc
Kaufe 25€/50€ PayPal Biete Nostale Gold Sever 1|Sever 3
04/08/2011 - Nostale Trading - 5 Replies
Jöhmm ich vke Nostale Gold 25€=10,5kk 50€=23kk Ich suche dafür Geld über PayPal für neuen(Lappi obwohl meiner wieder geht) Ich biete es auf Sever 1 & auf sever 3 ich brauche eine kurze Zeit um dass Gold aufzu treiben freu mich auf Gebote =D
[Info]4story ablage von sever zu sever verschieben!
03/23/2011 - 4Story - 7 Replies
Hallo, ab morgen könnt ihr auf 4story 2 Wochen lange wieder pvp,geuppte Sachen von Sever zu Sever verschieben alle die momentan ein Bankfach habe kriegen ab morgen 28bonustage für das bankfach steht auch alles hier http://board.4story.de/board1-ank%C3%BCndigungen/ board2-news-4story/41807-%C3%B6ffnung-des-bankfach es/
gibs ein tut zum p-sever erstellen in einem root sever ?
06/20/2010 - Metin2 Private Server - 14 Replies
gibs ein tut zum p-sever erstellen in einem root sever ? Hab ein root aber ein p-sever drauf wie mach ich jetzt ein drauf es gibt so viele tus für hamaschi aber keinen für root...



All times are GMT +1. The time now is 20:40.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.