luisgustavomiki

MyRPG - DBDUMP

Mar 18th, 2012
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 4.39 KB | None | 0 0
  1. -- --------------------------------------------------------
  2. -- Host:                         127.0.0.1
  3. -- Server version:               5.5.20 - MySQL Community Server (GPL)
  4. -- Server OS:                    Win32
  5. -- HeidiSQL version:             7.0.0.4053
  6. -- Date/time:                    2012-03-18 20:42:59
  7. -- --------------------------------------------------------
  8.  
  9. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  10. /*!40101 SET NAMES utf8 */;
  11. /*!40014 SET FOREIGN_KEY_CHECKS=0 */;
  12.  
  13. -- Dumping structure for table myrpg.faction_info
  14. CREATE TABLE IF NOT EXISTS `faction_info` (
  15.   `id` int(11) NOT NULL AUTO_INCREMENT,
  16.   `name` varchar(64) NOT NULL DEFAULT 'Civil',
  17.   `type` int(11) NOT NULL DEFAULT '0',
  18.   `bank` int(11) NOT NULL DEFAULT '0',
  19.   `x` double NOT NULL DEFAULT '0',
  20.   `y` double NOT NULL DEFAULT '0',
  21.   `z` double NOT NULL DEFAULT '0',
  22.   `rank1` varchar(64) NOT NULL DEFAULT 'Civil',
  23.   `rank2` varchar(64) NOT NULL DEFAULT 'Civil',
  24.   `rank3` varchar(64) NOT NULL DEFAULT 'Civil',
  25.   `rank4` varchar(64) NOT NULL DEFAULT 'Civil',
  26.   `rank5` varchar(64) NOT NULL DEFAULT 'Civil',
  27.   `rank6` varchar(64) NOT NULL DEFAULT 'Civil',
  28.   `rank7` varchar(64) NOT NULL DEFAULT 'Civil',
  29.   `rank8` varchar(64) NOT NULL DEFAULT 'Civil',
  30.   `rank9` varchar(64) NOT NULL DEFAULT 'Civil',
  31.   `rank10` varchar(64) NOT NULL DEFAULT 'Civil',
  32.   PRIMARY KEY (`id`),
  33.   UNIQUE KEY `id` (`id`)
  34. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT COMMENT='Infos from the Families';
  35.  
  36. -- Data exporting was unselected.
  37.  
  38.  
  39. -- Dumping structure for table myrpg.inventory_info
  40. CREATE TABLE IF NOT EXISTS `inventory_info` (
  41.   `id` int(11) NOT NULL AUTO_INCREMENT,
  42.   `pid` int(11) NOT NULL DEFAULT '0',
  43.   `itemid` int(11) NOT NULL DEFAULT '0',
  44.   `info` int(11) NOT NULL DEFAULT '0',
  45.   PRIMARY KEY (`id`),
  46.   UNIQUE KEY `id` (`id`)
  47. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT COMMENT='Infos from the Families';
  48.  
  49. -- Data exporting was unselected.
  50.  
  51.  
  52. -- Dumping structure for table myrpg.player_info
  53. CREATE TABLE IF NOT EXISTS `player_info` (
  54.   `id` int(10) NOT NULL AUTO_INCREMENT,
  55.   `name` varchar(50) NOT NULL,
  56.   `password` varchar(129) NOT NULL,
  57.   `attrib` int(11) NOT NULL DEFAULT '0',
  58.   `skin` int(11) NOT NULL DEFAULT '167',
  59.   `level` int(11) NOT NULL DEFAULT '1',
  60.   `exp` int(11) NOT NULL DEFAULT '0',
  61.   `cash` int(11) NOT NULL DEFAULT '5000',
  62.   `money` int(11) NOT NULL DEFAULT '10000',
  63.   `paycheck` int(11) NOT NULL DEFAULT '255',
  64.   `savings` int(11) NOT NULL DEFAULT '0',
  65.   `family` int(11) NOT NULL DEFAULT '0',
  66.   `familyrank` int(11) NOT NULL DEFAULT '0',
  67.   `familyjoin` int(11) NOT NULL DEFAULT '0',
  68.   `job` int(11) NOT NULL DEFAULT '0',
  69.   `jobrank` int(11) NOT NULL DEFAULT '0',
  70.   `jobtime` int(11) NOT NULL DEFAULT '0',
  71.   `spawn` int(10) NOT NULL DEFAULT '0',
  72.   PRIMARY KEY (`id`)
  73. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Infos from players';
  74.  
  75. -- Data exporting was unselected.
  76.  
  77.  
  78. -- Dumping structure for table myrpg.property_info
  79. CREATE TABLE IF NOT EXISTS `property_info` (
  80.   `id` int(11) NOT NULL AUTO_INCREMENT,
  81.   `attrib` int(11) NOT NULL DEFAULT '0',
  82.   `type` int(11) NOT NULL DEFAULT '0',
  83.   `level` int(11) NOT NULL DEFAULT '0',
  84.   `price` int(11) NOT NULL DEFAULT '0',
  85.   `ext_x` double NOT NULL DEFAULT '0',
  86.   `ext_y` double NOT NULL DEFAULT '0',
  87.   `ext_z` double NOT NULL DEFAULT '0',
  88.   `ext_prop` double NOT NULL DEFAULT '0',
  89.   `int_x` double NOT NULL DEFAULT '0',
  90.   `int_y` double NOT NULL DEFAULT '0',
  91.   `int_z` double NOT NULL DEFAULT '0',
  92.   `int_int` double NOT NULL DEFAULT '0',
  93.   `owner` int(11) NOT NULL DEFAULT '0',
  94.   `locked` tinyint(4) NOT NULL DEFAULT '0',
  95.   PRIMARY KEY (`id`),
  96.   UNIQUE KEY `id` (`id`)
  97. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT COMMENT='Infos from the Families';
  98.  
  99. -- Data exporting was unselected.
  100.  
  101.  
  102. -- Dumping structure for table myrpg.record_info
  103. CREATE TABLE IF NOT EXISTS `record_info` (
  104.   `id` int(11) NOT NULL AUTO_INCREMENT,
  105.   `pid` int(11) NOT NULL DEFAULT '0',
  106.   `type` int(11) NOT NULL DEFAULT '0',
  107.   `stamp` int(10) NOT NULL DEFAULT '0',
  108.   `reason` varchar(255) NOT NULL DEFAULT 'Sem motivo',
  109.   `time` int(11) NOT NULL DEFAULT '0',
  110.   `admin` int(11) NOT NULL DEFAULT '0',
  111.   `lifted` int(2) NOT NULL DEFAULT '0',
  112.   `liftadmin` int(11) NOT NULL DEFAULT '0',
  113.   `liftreason` varchar(255) NOT NULL DEFAULT '',
  114.   PRIMARY KEY (`id`)
  115. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  116.  
  117. -- Data exporting was unselected.
  118. /*!40014 SET FOREIGN_KEY_CHECKS=1 */;
  119. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
Add Comment
Please, Sign In to add comment