JayC
Well-Known Member
Hey Guys! Here with another release, don't forget to check out my Lottery Release!
Thanks to @Khalil for helping me finish up the code to check if the badge is in the folder
Heres the database query:
UPDATED LINK 2/5/2018
Images:
Features:
- Different ranks can buy different badges
- Different colored badge codes represent how many users have bought those badges
- Simple sleek design blends with any revcms
- Separates "Purchased" badges from badges received from emulator
- Removes the badge from the badgeshop JUST for that user if they already bought it (Makes the shop smaller the more they buy!)
Thanks to @Khalil for helping me finish up the code to check if the badge is in the folder
Heres the database query:
Code:
DROP TABLE IF EXISTS `badgeshop`;
CREATE TABLE `badgeshop` (
`badge_id` text NOT NULL,
`cost` int(11) NOT NULL DEFAULT '500',
`rank` int(11) NOT NULL DEFAULT '1',
`amount_bought` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
UPDATED LINK 2/5/2018
You must be registered for see links
Images:
Features:
- Different ranks can buy different badges
- Different colored badge codes represent how many users have bought those badges
- Simple sleek design blends with any revcms
- Separates "Purchased" badges from badges received from emulator
- Removes the badge from the badgeshop JUST for that user if they already bought it (Makes the shop smaller the more they buy!)
Last edited: