Advertisement
Guest User

autoloot sql table

a guest
Oct 27th, 2023
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.36 KB | Gaming | 0 0
  1. CREATE TABLE IF NOT EXISTS `custom_loot_templates` (
  2.   `lootid` INT(11) DEFAULT NULL,
  3.   `difficulty` INT(11) DEFAULT NULL,
  4.   `item` INT(11) DEFAULT NULL,
  5.   `chance` INT(11) DEFAULT NULL,
  6.   `mincount` INT(11) DEFAULT NULL,
  7.   `maxcount` INT(11) DEFAULT NULL,
  8.   `splitQ` INT(11) DEFAULT NULL,
  9.   `reqQuest` INT(11) DEFAULT NULL
  10. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement