Advertisement
Guest User

samp sql file

a guest
Jul 3rd, 2015
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.59 KB | None | 0 0
  1. /*
  2. Navicat MySQL Data Transfer
  3.  
  4. Source Server : localhost
  5. Source Server Version : 50524
  6. Source Host : localhost:3306
  7. Source Database : hidden(my db name right?)
  8.  
  9. Target Server Type : MYSQL
  10. Target Server Version : 50524
  11. File Encoding : 65001
  12.  
  13. Date: 2014-02-13 23:25:04
  14. */
  15.  
  16. SET FOREIGN_KEY_CHECKS=0;
  17.  
  18. -- ----------------------------
  19. -- Table structure for accounts
  20. -- ----------------------------
  21. DROP TABLE IF EXISTS `accounts`;
  22. CREATE TABLE `accounts` (
  23. `account_id` int(11) NOT NULL AUTO_INCREMENT,
  24. `account_name` varchar(24) NOT NULL,
  25. `account_pass` varchar(256) NOT NULL,
  26. `account_level` int(11) NOT NULL DEFAULT '0',
  27. `account_lastip` varchar(32) NOT NULL,
  28. `account_registerip` varchar(32) NOT NULL,
  29. `account_registerdate` datetime NOT NULL,
  30. `account_registerstamp` int(11) NOT NULL,
  31. `account_lastaccessdate` datetime NOT NULL,
  32. `account_lastaccessstamp` int(11) NOT NULL,
  33. `account_allowedips` int(11) NOT NULL DEFAULT '0',
  34. `account_email` varchar(50) NOT NULL,
  35. `account_suspictions` varchar(64) NOT NULL,
  36. `banned` int(11) NOT NULL DEFAULT '0',
  37. `account_playedtime` int(11) NOT NULL,
  38. `account_autologin` int(11) NOT NULL DEFAULT '0',
  39. `inuse` int(11) NOT NULL,
  40. PRIMARY KEY (`account_id`)
  41. ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1;
  42.  
  43. -- ----------------------------
  44. -- Table structure for bans
  45. -- ----------------------------
  46. DROP TABLE IF EXISTS `bans`;
  47. CREATE TABLE `bans` (
  48. `ban_id` int(11) NOT NULL AUTO_INCREMENT,
  49. `type` int(11) NOT NULL,
  50. `date` datetime NOT NULL,
  51. `admin` varchar(24) NOT NULL,
  52. `reason` varchar(256) NOT NULL,
  53. `expiration` int(11) NOT NULL,
  54. `ban_status` int(11) NOT NULL,
  55. `ip` varchar(32) DEFAULT NULL,
  56. `char_id` int(11) DEFAULT NULL,
  57. `account_id` int(11) DEFAULT NULL,
  58. `account_name` varchar(32) DEFAULT NULL,
  59. `char_name` varchar(32) DEFAULT NULL,
  60. PRIMARY KEY (`ban_id`)
  61. ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1;
  62.  
  63. -- ----------------------------
  64. -- Table structure for chars
  65. -- ----------------------------
  66. DROP TABLE IF EXISTS `chars`;
  67. CREATE TABLE `chars` (
  68. `char_id` int(11) NOT NULL AUTO_INCREMENT,
  69. `account_id` int(11) NOT NULL,
  70. `char_name` varchar(24) NOT NULL,
  71. `char_lastuse` datetime NOT NULL,
  72. `char_lastusestamp` int(11) NOT NULL,
  73. `helpmsgs` int(11) NOT NULL,
  74. `banned` int(11) NOT NULL,
  75. PRIMARY KEY (`char_id`)
  76. ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
  77.  
  78. -- ----------------------------
  79. -- Table structure for iptracking
  80. -- ----------------------------
  81. DROP TABLE IF EXISTS `iptracking`;
  82. CREATE TABLE `iptracking` (
  83. `ip_used` varchar(32) NOT NULL,
  84. `account_id` int(11) NOT NULL,
  85. `banned` int(11) NOT NULL,
  86. `account_name` varchar(255) NOT NULL,
  87. `dateregistered` datetime NOT NULL,
  88. `datestamp` int(11) NOT NULL
  89. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  90.  
  91. -- ----------------------------
  92. -- Table structure for mainconfig
  93. -- ----------------------------
  94. DROP TABLE IF EXISTS `mainconfig`;
  95. CREATE TABLE `mainconfig` (
  96. `damagemul` float NOT NULL DEFAULT '1',
  97. `critchancemul` float NOT NULL DEFAULT '1',
  98. `spawntimemul` float NOT NULL DEFAULT '1',
  99. `critchance` float NOT NULL DEFAULT '5',
  100. `vote` int(11) NOT NULL DEFAULT '1',
  101. `votekick` int(11) NOT NULL DEFAULT '1',
  102. `voteban` int(11) NOT NULL DEFAULT '1',
  103. `votescramble` int(11) NOT NULL DEFAULT '1',
  104. `votemode` int(11) NOT NULL DEFAULT '1',
  105. `votemap` int(11) NOT NULL DEFAULT '1',
  106. `votereset` int(11) NOT NULL DEFAULT '1',
  107. `DefWeather` int(11) NOT NULL DEFAULT '1',
  108. `DefTime` int(11) NOT NULL DEFAULT '1',
  109. `ServerCrashed` int(11) NOT NULL
  110. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  111.  
  112. -- ----------------------------
  113. -- Table structure for punishments
  114. -- ----------------------------
  115. DROP TABLE IF EXISTS `punishments`;
  116. CREATE TABLE `punishments` (
  117. `punishmenttype` varchar(24) NOT NULL,
  118. `char_id` int(11) DEFAULT NULL,
  119. `char_name` varchar(32) DEFAULT NULL,
  120. `account_id` int(11) NOT NULL,
  121. `account_name` varchar(32) DEFAULT NULL,
  122. `issuername` varchar(32) NOT NULL,
  123. `timeissued` datetime NOT NULL,
  124. `reason` varchar(156) DEFAULT NULL
  125. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  126.  
  127. -- ----------------------------
  128. -- Table structure for reports
  129. -- ----------------------------
  130. DROP TABLE IF EXISTS `reports`;
  131. CREATE TABLE `reports` (
  132. `report_id` int(11) NOT NULL AUTO_INCREMENT,
  133. `reporter_acc_name` varchar(24) NOT NULL,
  134. `reported_acc_name` varchar(24) NOT NULL,
  135. `reportdate` datetime NOT NULL,
  136. `report` varchar(255) NOT NULL,
  137. PRIMARY KEY (`report_id`)
  138. ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
  139.  
  140. -- ----------------------------
  141. -- Table structure for stats
  142. -- ----------------------------
  143. DROP TABLE IF EXISTS `stats`;
  144. CREATE TABLE `stats` (
  145. `char_id` int(11) NOT NULL,
  146. `type` int(11) NOT NULL DEFAULT '0',
  147. `class` int(11) DEFAULT NULL,
  148. `kills` int(11) NOT NULL DEFAULT '0',
  149. `score` int(11) NOT NULL DEFAULT '0',
  150. `captures` int(11) NOT NULL DEFAULT '0',
  151. `defenses` int(11) NOT NULL DEFAULT '0',
  152. `destructions` int(11) NOT NULL DEFAULT '0',
  153. `assists` int(11) NOT NULL DEFAULT '0',
  154. `damagedealt` float NOT NULL DEFAULT '0',
  155. `healed` float NOT NULL DEFAULT '0',
  156. `saps` int(11) NOT NULL DEFAULT '0',
  157. `backstabs` int(11) NOT NULL DEFAULT '0',
  158. `constructions` int(11) NOT NULL DEFAULT '0',
  159. `headshoots` int(11) NOT NULL DEFAULT '0',
  160. `ubers` int(11) NOT NULL DEFAULT '0',
  161. `time` int(11) NOT NULL DEFAULT '0',
  162. `criticals` int(11) NOT NULL DEFAULT '0',
  163. `victories` int(11) NOT NULL DEFAULT '0'
  164. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement