Guest User

Untitled

a guest
Dec 28th, 2017
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.32 KB | None | 0 0
  1. CREATE TABLE `LoginLogs` (
  2. `dbid` int(11) DEFAULT NULL,
  3. `connectedFrom` varchar(100) DEFAULT NULL,
  4. `hostAddress` varchar(100) DEFAULT NULL,
  5. `macAddress` varchar(100) DEFAULT NULL,
  6. `regSerial` varchar(100) DEFAULT NULL,
  7. `systemName` varchar(100) DEFAULT NULL,
  8. `playerName` varchar(50) DEFAULT NULL,
  9. `playerRights` int(11) DEFAULT NULL,
  10. `macAdress` varchar(100) DEFAULT NULL,
  11. `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
  12. );
  13.  
  14. CREATE TABLE `account_registration` (
  15. `playerID` int(11) DEFAULT NULL,
  16. `playerName` varchar(50) DEFAULT NULL,
  17. `registerDateTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  18. `hostAddress` varchar(100) DEFAULT NULL,
  19. `macAddress` varchar(100) DEFAULT NULL,
  20. `regSerial` varchar(100) DEFAULT NULL,
  21. `systemName` varchar(100) DEFAULT NULL
  22. );
  23.  
  24. CREATE TABLE `clients` (
  25. `playerID` int(11) DEFAULT NULL,
  26. `voteStreaks` int(11) DEFAULT NULL,
  27. `playerName` varchar(50) DEFAULT NULL,
  28. `playerMacAddress` varchar(50) DEFAULT NULL,
  29. `connectedFrom` varchar(50) DEFAULT NULL,
  30. `regSerial` varchar(50) DEFAULT NULL,
  31. `dbid` int(11) DEFAULT NULL,
  32. `lockedExperienceGain` tinyint(1) DEFAULT NULL,
  33. `weaponGameMeleeLevel` int(11) DEFAULT NULL,
  34. `encryptedPass` varchar(100) DEFAULT NULL,
  35. `gameMode` varchar(50) DEFAULT NULL,
  36. `newPlayer` tinyint(1) DEFAULT NULL,
  37. `heightLevel` int(11) DEFAULT NULL,
  38. `absX` int(11) DEFAULT NULL,
  39. `absY` int(11) DEFAULT NULL,
  40. `playerRights` int(11) DEFAULT NULL,
  41. `systemName` varchar(50) DEFAULT NULL,
  42. `playerMacAdress` varchar(50) DEFAULT NULL,
  43. `titleColor` varchar(50) DEFAULT NULL,
  44. `runEnergy` int(11) DEFAULT NULL,
  45. `titleShadow` varchar(50) DEFAULT NULL,
  46. `textShadow` varchar(50) DEFAULT NULL,
  47. `yellTitle` varchar(50) DEFAULT NULL,
  48. `textYellColor` varchar(50) DEFAULT NULL,
  49. `crystalBowShots` int(11) DEFAULT NULL,
  50. `lostCatId` int(11) DEFAULT NULL,
  51. `dungTokens` int(11) DEFAULT NULL,
  52. `duelsWon` int(11) DEFAULT NULL,
  53. `duelsLost` int(11) DEFAULT NULL,
  54. `premiumPoints` int(11) DEFAULT NULL,
  55. `voterPoints` int(11) DEFAULT NULL,
  56. `totalVotes` int(11) DEFAULT NULL,
  57. `amountDonated` int(11) DEFAULT NULL,
  58. `title` varchar(50) DEFAULT NULL,
  59. `donorPoints` int(11) DEFAULT NULL,
  60. `tempAmountDonated` int(11) DEFAULT NULL,
  61. `YellsRemaining` float DEFAULT NULL,
  62. `playTime` mediumtext,
  63. `weaponGameRangeLevel` int(11) DEFAULT NULL,
  64. `weaponGameMageLevel` int(11) DEFAULT NULL,
  65. `weaponGameMeleeKills` int(11) DEFAULT NULL,
  66. `weaponGameRangeKills` int(11) DEFAULT NULL,
  67. `weaponGameMeleeDeaths` int(11) DEFAULT NULL,
  68. `weaponGameRangeDeaths` int(11) DEFAULT NULL,
  69. `weaponGameMageDeaths` int(11) DEFAULT NULL,
  70. `weaponGameMeleeLP` int(11) DEFAULT NULL,
  71. `weaponGameRangeLP` int(11) DEFAULT NULL,
  72. `weaponGameMageLP` int(11) DEFAULT NULL,
  73. `lastWeapon` int(11) DEFAULT NULL,
  74. `homeArea` int(11) DEFAULT NULL,
  75. `Tasksdone` int(11) DEFAULT NULL,
  76. `bankPin` int(11) DEFAULT NULL,
  77. `recievedWg` tinyint(1) DEFAULT NULL,
  78. `usingCurses` int(11) DEFAULT NULL,
  79. `useCustomYell` tinyint(1) DEFAULT NULL,
  80. `attemptsRemaining` int(11) DEFAULT NULL,
  81. `WGPoints` int(11) DEFAULT NULL,
  82. `poisonDamage` int(11) DEFAULT NULL,
  83. `action` int(11) DEFAULT NULL,
  84. `totalBossesKilled` int(11) DEFAULT NULL,
  85. `PkKillCount` int(11) DEFAULT NULL,
  86. `boostedHits` int(11) DEFAULT NULL,
  87. `pure` int(11) DEFAULT NULL,
  88. `isSpawned` tinyint(1) DEFAULT NULL,
  89. `FamiliarID` int(11) DEFAULT NULL,
  90. `pkingPoints` int(11) DEFAULT NULL,
  91. `skullTimer` int(11) DEFAULT NULL,
  92. `weaponGameMageKills` int(11) DEFAULT NULL,
  93. `recoveryId` int(11) DEFAULT NULL,
  94. `playerDeathCount` int(11) DEFAULT NULL,
  95. `Blackmarks` int(11) DEFAULT NULL,
  96. `xpLock` int(11) DEFAULT NULL,
  97. `membership` tinyint(1) DEFAULT NULL,
  98. `startDay` int(11) DEFAULT NULL,
  99. `startMonth` int(11) DEFAULT NULL,
  100. `recoilCount` int(11) DEFAULT NULL,
  101. `doubleExpRingCount` int(11) DEFAULT NULL,
  102. `playerMagicBook` int(11) DEFAULT NULL,
  103. `barrowsNpcs` varchar(1000) DEFAULT NULL,
  104. `specialAttackCharge` double DEFAULT NULL,
  105. `randomCoffin` int(11) DEFAULT NULL,
  106. `barrowsKillCount` int(11) DEFAULT NULL,
  107. `pcPoints` int(11) DEFAULT NULL,
  108. `donatedtimes` int(11) DEFAULT NULL,
  109. `donatorType` int(11) DEFAULT NULL,
  110. `isStarter` int(11) DEFAULT NULL,
  111. `magePoints` int(11) DEFAULT NULL,
  112. `pkPoints` int(11) DEFAULT NULL,
  113. `waveId` int(11) DEFAULT NULL,
  114. `killCount` int(11) DEFAULT NULL,
  115. `fightStyle` int(11) DEFAULT NULL,
  116. `fightMode` int(11) DEFAULT NULL,
  117. `epAmount` int(11) DEFAULT NULL,
  118. `splitChat` int(11) DEFAULT NULL,
  119. `brightness` int(11) DEFAULT NULL,
  120. `totalEXP` mediumtext,
  121. `enterBHTimer` int(11) DEFAULT NULL,
  122. `lastClan` varchar(50) DEFAULT NULL,
  123. `lastWithdrawAmount` int(11) DEFAULT NULL,
  124. `playerEquipment` varchar(1000) DEFAULT NULL,
  125. `playerAppearance` varchar(1000) DEFAULT NULL,
  126. `playerLevel` varchar(1000) DEFAULT NULL,
  127. `playerItems` varchar(5000) DEFAULT NULL,
  128. `playerBank` varchar(25000) DEFAULT NULL,
  129. `clanKey` int(11) DEFAULT NULL,
  130. `friends` varchar(1000) DEFAULT NULL,
  131. `ignores` varchar(1000) DEFAULT NULL,
  132. `publicChatMode` int(11) DEFAULT NULL,
  133. `privateChatMode` int(11) DEFAULT NULL,
  134. `clanChatMode` int(11) DEFAULT NULL,
  135. `tradeMode` int(11) DEFAULT NULL,
  136. `shoutMode` int(11) DEFAULT NULL,
  137. `globalMode` int(11) DEFAULT NULL,
  138. `gameChatMode` int(11) DEFAULT NULL,
  139. `bossesKilled` int(11) DEFAULT NULL,
  140. `wonBets` int(11) DEFAULT NULL,
  141. `lostBets` int(11) DEFAULT NULL,
  142. `resetRequestDate` mediumtext,
  143. `tasks` varchar(2000) DEFAULT NULL,
  144. `taskProgress` varchar(5000) DEFAULT NULL,
  145. `familiaritems` varchar(1000) DEFAULT NULL,
  146. `settingValues` varchar(500) DEFAULT NULL,
  147. `playerData` varchar(5000) DEFAULT NULL,
  148. `playerPresets` varchar(2000) DEFAULT NULL,
  149. `playerTimers` varchar(2000) DEFAULT NULL,
  150. `itemDegrading` varchar(2000) DEFAULT NULL,
  151. `playerSettings` varchar(2000) DEFAULT NULL,
  152. `quickPrayers` int(11) DEFAULT NULL,
  153. `quickCurses` int(11) DEFAULT NULL,
  154. `overloadTick` int(11) DEFAULT NULL,
  155. `lastDailyReward` int(11) DEFAULT NULL,
  156. `wgClassID` int(11) DEFAULT NULL,
  157. `playerEmail` varchar(30) DEFAULT NULL,
  158. `castleWarsScore` int(11) DEFAULT NULL,
  159. `castleWarsCaptures` int(11) DEFAULT NULL,
  160. `castleWarsCatapultDamage` int(11) DEFAULT NULL,
  161. `changePassword` int(11) DEFAULT NULL,
  162. `slayerMaster` int(11) DEFAULT NULL,
  163. `castleWarsGamesPlayed` int(11) DEFAULT NULL,
  164. `castleWarsKills` int(11) DEFAULT NULL,
  165. `slayerMonsterType` int(11) DEFAULT NULL,
  166. `slayerPendingKills` int(11) DEFAULT NULL,
  167. `slayerPoints` int(11) DEFAULT NULL,
  168. `slayerTaskStreak` int(11) DEFAULT NULL,
  169. `slayerDisabledTasks` varchar(300) DEFAULT NULL,
  170. `recolors` varchar(500) DEFAULT NULL,
  171. `settingsFlags` mediumtext,
  172. `killStreak` int(11) DEFAULT NULL,
  173. `knowledgePool` mediumtext,
  174. `luckPool` mediumtext,
  175. `precisionPool` mediumtext,
  176. `reinvigorationPool` mediumtext,
  177. `securityPool` mediumtext,
  178. `dfsCharges` int(11) DEFAULT NULL,
  179. `acceptRules` int(11) DEFAULT NULL,
  180. `lastVoteStreak` mediumtext,
  181. `lastStreakPenalty` mediumtext,
  182. `streakPenalty` mediumtext,
  183. `donatorExpireTime` mediumtext,
  184. `participationPoints` int(11) DEFAULT NULL,
  185. `contributionPoints` int(11) DEFAULT NULL,
  186. `dicingHosts` int(11) DEFAULT NULL,
  187. `trollPetNameID` int(11) DEFAULT NULL,
  188. `charmCollectSettings` int(11) DEFAULT NULL,
  189. `skillingPoints` int(11) DEFAULT NULL,
  190. `skillingExperience` int(11) DEFAULT NULL,
  191. `experienceBonus` mediumtext,
  192. `collectBoneID` int(11) DEFAULT NULL,
  193. `collectedBones` int(11) DEFAULT NULL,
  194. `playerTitle` varchar(100) DEFAULT NULL,
  195. `titleTasks` varchar(300) DEFAULT NULL,
  196. `progressVariables` varchar(300) DEFAULT NULL,
  197. `fightPitsWins` int(11) DEFAULT NULL,
  198. `middleman` tinyint(1) DEFAULT NULL,
  199. `rareDropCount` int(11) DEFAULT NULL,
  200. `duelPresets` varchar(300) DEFAULT NULL,
  201. `minedDusts` int(11) DEFAULT NULL,
  202. `spottedStars` int(11) DEFAULT NULL,
  203. `soulPoints` int(11) DEFAULT NULL,
  204. `lastRecoverCountReset` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  205. `collectionRecoveries` varchar(500) DEFAULT NULL,
  206. `easyScroll` varchar(100) DEFAULT NULL,
  207. `mediumScroll` varchar(100) DEFAULT NULL,
  208. `hardScroll` varchar(100) DEFAULT NULL,
  209. `eliteScroll` varchar(100) DEFAULT NULL,
  210. `recoveryPoints` int(11) DEFAULT NULL,
  211. `dicingDuration` mediumtext,
  212. `bankItems` varchar(3000) DEFAULT NULL,
  213. `isTrusted` tinyint(1) DEFAULT NULL
  214. );
  215.  
  216. CREATE TABLE `clients_old` (
  217. `playerID` int(11) DEFAULT NULL,
  218. `voteStreaks` int(11) DEFAULT NULL,
  219. `playerName` varchar(50) DEFAULT NULL,
  220. `playerMacAddress` varchar(50) DEFAULT NULL,
  221. `connectedFrom` varchar(50) DEFAULT NULL,
  222. `regSerial` varchar(50) DEFAULT NULL
  223. );
  224.  
  225. CREATE TABLE `collect` (
  226. `player` int(11) DEFAULT NULL,
  227. `items` varchar(1000) DEFAULT NULL
  228. );
  229.  
  230. CREATE TABLE `npcKills` (
  231. `playerID` int(11) DEFAULT NULL,
  232. `npcID` int(11) DEFAULT NULL,
  233. `killCount` int(11) DEFAULT NULL,
  234. `bestKillTime` mediumtext
  235. );
  236.  
  237. CREATE TABLE `player_inventory` (
  238. `playerID` int(11) DEFAULT NULL,
  239. `looting_bag` varchar(5000) DEFAULT NULL
  240. );
  241.  
  242. CREATE TABLE `player_killing_score` (
  243. `player_id` int(11) DEFAULT NULL,
  244. `pk_score` int(11) DEFAULT NULL
  245. );
  246.  
  247. CREATE TABLE `player_killing_tournament` (
  248. `playerID` int(11) DEFAULT NULL,
  249. `score` int(11) DEFAULT NULL
  250. );
  251.  
  252. CREATE TABLE `player_pending_action` (
  253. `action_id` int(11) DEFAULT NULL,
  254. `player_id` int(11) DEFAULT NULL,
  255. `date_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  256. `type` varchar(100) DEFAULT NULL
  257. );
  258.  
  259. CREATE TABLE `playercount` (
  260. `playerCount` int(11) DEFAULT NULL,
  261. `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  262. `count` int(11) DEFAULT NULL
  263. );
  264.  
  265. CREATE TABLE `punishment` (
  266. `index` int(11) DEFAULT NULL,
  267. `playerName` varchar(50) DEFAULT NULL,
  268. `agent` varchar(50) DEFAULT NULL,
  269. `expireDate` mediumtext,
  270. `duration` varchar(50) DEFAULT NULL,
  271. `type` varchar(300) DEFAULT NULL,
  272. `reason` varchar(50) DEFAULT NULL,
  273. `punishment` varchar(50) DEFAULT NULL,
  274. `hostAddress` varchar(100) DEFAULT NULL,
  275. `serial` varchar(100) DEFAULT NULL
  276. );
  277.  
  278. CREATE TABLE `time_online_log` (
  279. `playerID` int(11) DEFAULT NULL,
  280. `loginHash` int(11) DEFAULT NULL,
  281. `onlineTime` mediumtext
  282. );
  283.  
  284. CREATE TABLE `votes_lottery_winners` (
  285. `playerID` int(11) DEFAULT NULL,
  286. `playerName` varchar(50) DEFAULT NULL,
  287. `itemID` int(11) DEFAULT NULL,
  288. `dateTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
  289. );
  290.  
  291. CREATE TABLE `votes_record` (
  292. `playerID` int(11) DEFAULT NULL,
  293. `playerName` varchar(50) DEFAULT NULL,
  294. `points` int(11) DEFAULT NULL,
  295. `totalPoints` int(11) DEFAULT NULL,
  296. `voteStreaks` float DEFAULT NULL
  297. );
  298.  
  299. CREATE TABLE `votes_winners` (
  300. `playerID` int(11) DEFAULT NULL,
  301. `playerName` varchar(50) DEFAULT NULL,
  302. `position` int(11) DEFAULT NULL,
  303. `points` int(11) DEFAULT NULL,
  304. `voteStreaks` float DEFAULT NULL,
  305. `dateTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
  306. );
  307.  
  308. CREATE TABLE `voting_lottery` (
  309. `playerID` int(11) DEFAULT NULL,
  310. `playerName` varchar(50) DEFAULT NULL
  311. );
  312.  
  313. CREATE TABLE `website_message` (
  314. `message_type` varchar(100) DEFAULT NULL,
  315. `data` varchar(100) DEFAULT NULL
  316. );
Advertisement
Add Comment
Please, Sign In to add comment