Initial release of the cash shop sales (#1825)

Added a permission for the cashshop sales

Thanks to @Angelic234 and everyone else who tested this feature while it was sleeping waiting in a pull request.
Thanks to @aleos89, @secretdataz and @lighta for reviewing and commenting.
This commit is contained in:
Lemongrass3110
2017-02-15 14:04:18 +01:00
committed by GitHub
parent 7cf081c24b
commit aaa4ea919e
15 changed files with 749 additions and 20 deletions

View File

@@ -813,6 +813,18 @@ CREATE TABLE IF NOT EXISTS `mercenary_owner` (
PRIMARY KEY (`char_id`)
) ENGINE=MyISAM;
-- ----------------------------
-- Table structure for `sales`
-- ----------------------------
CREATE TABLE IF NOT EXISTS `sales` (
`nameid` smallint(5) unsigned NOT NULL,
`start` datetime NOT NULL,
`end` datetime NOT NULL,
`amount` int(11) NOT NULL,
PRIMARY KEY (`nameid`)
) ENGINE=MyISAM;
--
-- Table structure for table `sc_data`
--