Advertisement
Banditul

Untitled

Oct 15th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 6.82 KB | None | 0 0
  1. //level and exp table
  2. -- phpMyAdmin SQL Dump
  3. -- version 4.7.4
  4. -- https://www.phpmyadmin.net/
  5. --
  6. -- Host: 127.0.0.1
  7. -- Generation Time: 15 Oct 2017 la 18:07
  8. -- Versiune server: 10.1.26-MariaDB
  9. -- PHP Version: 7.1.9
  10.  
  11. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  12. SET AUTOCOMMIT = 0;
  13. START TRANSACTION;
  14. SET time_zone = "+00:00";
  15.  
  16.  
  17. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  18. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  19. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  20. /*!40101 SET NAMES utf8mb4 */;
  21.  
  22. --
  23. -- Database: `trucking`
  24. --
  25.  
  26. -- --------------------------------------------------------
  27.  
  28. --
  29. -- Structura de tabel pentru tabelul `explevel`
  30. --
  31.  
  32. CREATE TABLE `explevel` (
  33.   `ID` int(11) UNSIGNED NOT NULL,
  34.   `pid` int(11) NOT NULL,
  35.   `LevelT` int(11) UNSIGNED NOT NULL DEFAULT '0',
  36.   `LevelB` int(11) UNSIGNED NOT NULL DEFAULT '0',
  37.   `LevelPi` int(11) UNSIGNED NOT NULL DEFAULT '0',
  38.   `LevelPo` int(11) UNSIGNED NOT NULL DEFAULT '0',
  39.   `LevelM` int(11) UNSIGNED NOT NULL DEFAULT '0',
  40.   `LevelC` int(11) UNSIGNED DEFAULT '0',
  41.   `LevelS` int(11) UNSIGNED NOT NULL DEFAULT '0',
  42.   `LevelL` int(11) UNSIGNED NOT NULL DEFAULT '0',
  43.   `LevelPB` int(11) UNSIGNED NOT NULL DEFAULT '0',
  44.   `LevelSo` int(10) UNSIGNED NOT NULL DEFAULT '0',
  45.   `LevelG` int(10) UNSIGNED NOT NULL DEFAULT '0',
  46.   `LevelTa` int(10) UNSIGNED NOT NULL DEFAULT '0',
  47.   `LevelPa` int(10) UNSIGNED NOT NULL DEFAULT '0',
  48.   `ExpEarnT` int(11) UNSIGNED NOT NULL DEFAULT '0',
  49.   `ExpEarnB` int(11) UNSIGNED NOT NULL DEFAULT '0',
  50.   `ExpEarnPi` int(11) UNSIGNED NOT NULL DEFAULT '0',
  51.   `ExpEarnPo` int(11) UNSIGNED NOT NULL DEFAULT '0',
  52.   `ExpEarnM` int(11) UNSIGNED NOT NULL DEFAULT '0',
  53.   `ExpEarnC` int(11) UNSIGNED NOT NULL DEFAULT '0',
  54.   `ExpEarnS` int(11) UNSIGNED NOT NULL DEFAULT '0',
  55.   `ExpEarnL` int(11) UNSIGNED NOT NULL DEFAULT '0',
  56.   `ExpEarnPB` int(11) UNSIGNED NOT NULL DEFAULT '0',
  57.   `ExpEarnSo` int(10) UNSIGNED NOT NULL DEFAULT '0',
  58.   `ExpEarnG` int(10) UNSIGNED NOT NULL DEFAULT '0',
  59.   `ExpEarnTa` int(10) UNSIGNED NOT NULL DEFAULT '0',
  60.   `ExpEarnPa` int(10) UNSIGNED NOT NULL DEFAULT '0',
  61.   `ExpNeedT` int(11) UNSIGNED NOT NULL DEFAULT '100',
  62.   `ExpNeedB` int(11) UNSIGNED NOT NULL DEFAULT '100',
  63.   `ExpNeedPi` int(11) UNSIGNED NOT NULL DEFAULT '100',
  64.   `ExpNeedPo` int(11) UNSIGNED NOT NULL DEFAULT '100',
  65.   `ExpNeedM` int(11) UNSIGNED NOT NULL DEFAULT '100',
  66.   `ExpNeedC` int(11) UNSIGNED NOT NULL DEFAULT '100',
  67.   `ExpNeedS` int(11) UNSIGNED NOT NULL DEFAULT '100',
  68.   `ExpNeedL` int(11) UNSIGNED NOT NULL DEFAULT '100',
  69.   `ExpNeedPB` int(11) UNSIGNED NOT NULL DEFAULT '100',
  70.   `ExpNeedSo` int(10) UNSIGNED NOT NULL DEFAULT '100',
  71.   `ExpNeedG` int(10) UNSIGNED NOT NULL DEFAULT '100',
  72.   `ExpNeedTa` int(10) UNSIGNED NOT NULL DEFAULT '100',
  73.   `ExpNeedPa` int(10) UNSIGNED NOT NULL DEFAULT '100'
  74. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  75.  
  76. --
  77. -- Salvarea datelor din tabel `explevel`
  78. --
  79.  
  80.  
  81. --
  82. -- Indexes for dumped tables
  83. --
  84.  
  85. --
  86. -- Indexes for table `explevel`
  87. --
  88. ALTER TABLE `explevel`
  89.   ADD PRIMARY KEY (`ID`),
  90.   ADD UNIQUE KEY `ID` (`ID`),
  91.   ADD KEY `pid` (`pid`);
  92.  
  93. --
  94. -- AUTO_INCREMENT for dumped tables
  95. --
  96.  
  97. --
  98. -- AUTO_INCREMENT for table `explevel`
  99. --
  100. ALTER TABLE `explevel`
  101.   MODIFY `ID` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
  102. COMMIT;
  103.  
  104. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  105. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  106. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  107.  
  108. //players table
  109. -- phpMyAdmin SQL Dump
  110. -- version 4.7.4
  111. -- https://www.phpmyadmin.net/
  112. --
  113. -- Host: 127.0.0.1
  114. -- Generation Time: 15 Oct 2017 la 18:07
  115. -- Versiune server: 10.1.26-MariaDB
  116. -- PHP Version: 7.1.9
  117.  
  118. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  119. SET AUTOCOMMIT = 0;
  120. START TRANSACTION;
  121. SET time_zone = "+00:00";
  122.  
  123.  
  124. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  125. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  126. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  127. /*!40101 SET NAMES utf8mb4 */;
  128.  
  129. --
  130. -- Database: `trucking`
  131. --
  132.  
  133. -- --------------------------------------------------------
  134.  
  135. --
  136. -- Structura de tabel pentru tabelul `players`
  137. --
  138.  
  139. CREATE TABLE `players` (
  140.   `id` int(11) NOT NULL,
  141.   `username` varchar(24) NOT NULL,
  142.   `password` varchar(66) NOT NULL,
  143.   `salt` varchar(17) NOT NULL,
  144.   `IP` varchar(16) NOT NULL,
  145.   `PlayerLevel` tinyint(11) UNSIGNED NOT NULL DEFAULT '0',
  146.   `VPlayerLevel` tinyint(11) UNSIGNED NOT NULL DEFAULT '0',
  147.   `PlayerJailed` int(11) UNSIGNED NOT NULL DEFAULT '0',
  148.   `MuteSeconds` int(11) UNSIGNED NOT NULL DEFAULT '0',
  149.   `RulesRead` tinyint(2) UNSIGNED NOT NULL DEFAULT '0',
  150.   `Wanted` int(11) UNSIGNED NOT NULL DEFAULT '0',
  151.   `Gold` int(10) UNSIGNED NOT NULL DEFAULT '0',
  152.   `PlayerSkin` smallint(5) NOT NULL DEFAULT '-1',
  153.   `TruckerLicense` tinyint(11) UNSIGNED NOT NULL DEFAULT '0',
  154.   `BusLicense` tinyint(11) UNSIGNED NOT NULL DEFAULT '0',
  155.   `MafiaLicense` tinyint(11) UNSIGNED NOT NULL DEFAULT '0',
  156.   `PilotLicense` tinyint(11) UNSIGNED NOT NULL DEFAULT '0',
  157.   `SoldatLicense` tinyint(11) UNSIGNED NOT NULL DEFAULT '0',
  158.   `PlayerMoney` int(20) NOT NULL DEFAULT '0',
  159.   `PlayerScore` int(11) UNSIGNED NOT NULL DEFAULT '0',
  160.   `StatsTruckerJobs` int(11) UNSIGNED NOT NULL DEFAULT '0',
  161.   `StatsConvoyJobs` int(11) UNSIGNED NOT NULL DEFAULT '0',
  162.   `StatsBusDriverJobs` int(11) UNSIGNED NOT NULL DEFAULT '0',
  163.   `StatsPilotJobs` int(11) UNSIGNED NOT NULL DEFAULT '0',
  164.   `StatsMafiaJobs` int(11) UNSIGNED NOT NULL DEFAULT '0',
  165.   `StatsMafiaStolen` int(11) UNSIGNED NOT NULL DEFAULT '0',
  166.   `StatsPoliceFined` int(11) UNSIGNED NOT NULL DEFAULT '0',
  167.   `StatsPoliceJailed` int(11) UNSIGNED NOT NULL DEFAULT '0',
  168.   `StatsCourierJobs` int(11) UNSIGNED NOT NULL DEFAULT '0',
  169.   `StatsRoadworkerJobs` int(11) UNSIGNED NOT NULL DEFAULT '0',
  170.   `StatsPboyJobs` int(11) UNSIGNED NOT NULL DEFAULT '0',
  171.   `StatsMetersDriven` float UNSIGNED NOT NULL DEFAULT '0',
  172.   `StatsMedicJobs` int(11) UNSIGNED NOT NULL DEFAULT '0',
  173.   `StatsSoferJobs` int(10) UNSIGNED NOT NULL DEFAULT '0',
  174.   `StatsGJobs` int(10) UNSIGNED NOT NULL DEFAULT '0',
  175.   `StatsTaxiJobs` int(10) UNSIGNED NOT NULL DEFAULT '0',
  176.   `StatsPadurarJobs` int(10) UNSIGNED NOT NULL DEFAULT '0'
  177. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  178.  
  179. --
  180. -- Salvarea datelor din tabel `players`
  181. --
  182.  
  183. --
  184. -- Indexes for dumped tables
  185. --
  186.  
  187. --
  188. -- Indexes for table `players`
  189. --
  190. ALTER TABLE `players`
  191.   ADD PRIMARY KEY (`id`);
  192.  
  193. --
  194. -- AUTO_INCREMENT for dumped tables
  195. --
  196.  
  197. --
  198. -- AUTO_INCREMENT for table `players`
  199. --
  200. ALTER TABLE `players`
  201.   MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
  202. COMMIT;
  203.  
  204. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  205. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  206. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement