armark1ng

Untitled

Oct 13th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. CREATE TABLE `stats` (
  2. `player_name` varchar(15) NOT NULL,
  3. `rights` double DEFAULT NULL,
  4. `game_mode` int(11) NOT NULL,
  5. `totallvl` double NOT NULL,
  6. `totalxp` double DEFAULT NULL,
  7. `Attacklvl` double DEFAULT NULL,
  8. `Attackxp` double DEFAULT NULL,
  9. `Defencelvl` double DEFAULT NULL,
  10. `Defencexp` double DEFAULT NULL,
  11. `Strengthlvl` double DEFAULT NULL,
  12. `Strengthxp` double DEFAULT NULL,
  13. `Hitpointslvl` double DEFAULT NULL,
  14. `Hitpointsxp` double DEFAULT NULL,
  15. `Rangelvl` double DEFAULT NULL,
  16. `Rangexp` double DEFAULT NULL,
  17. `Prayerlvl` double DEFAULT NULL,
  18. `Prayerxp` double DEFAULT NULL,
  19. `Magiclvl` double DEFAULT NULL,
  20. `Magicxp` double DEFAULT NULL,
  21. `Cookinglvl` double DEFAULT NULL,
  22. `Cookingxp` double DEFAULT NULL,
  23. `Woodcuttinglvl` double DEFAULT NULL,
  24. `Woodcuttingxp` double DEFAULT NULL,
  25. `Fletchinglvl` double DEFAULT NULL,
  26. `Fletchingxp` double DEFAULT NULL,
  27. `Fishinglvl` double DEFAULT NULL,
  28. `Fishingxp` double DEFAULT NULL,
  29. `Firemakinglvl` double DEFAULT NULL,
  30. `Firemakingxp` double DEFAULT NULL,
  31. `Craftinglvl` double DEFAULT NULL,
  32. `Craftingxp` double DEFAULT NULL,
  33. `Smithinglvl` double DEFAULT NULL,
  34. `Smithingxp` double DEFAULT NULL,
  35. `Mininglvl` double DEFAULT NULL,
  36. `Miningxp` double DEFAULT NULL,
  37. `Herblorelvl` double DEFAULT NULL,
  38. `Herblorexp` double DEFAULT NULL,
  39. `Agilitylvl` double DEFAULT NULL,
  40. `Agilityxp` double DEFAULT NULL,
  41. `Thievinglvl` double DEFAULT NULL,
  42. `Thievingxp` double DEFAULT NULL,
  43. `Slayerlvl` double DEFAULT NULL,
  44. `Slayerxp` double DEFAULT NULL,
  45. `Farminglvl` double DEFAULT NULL,
  46. `Farmingxp` double DEFAULT NULL,
  47. `Runecraftlvl` double DEFAULT NULL,
  48. `Runecraftxp` double DEFAULT NULL,
  49. `Hunterlvl` double DEFAULT NULL,
  50. `Hunterxp` double DEFAULT NULL,
  51. `kills` double NOT NULL DEFAULT '0',
  52. `deaths` double NOT NULL DEFAULT '0',
  53. `pkp` double NOT NULL DEFAULT '0',
  54. `pkpx` double NOT NULL DEFAULT '0'
  55. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment