Step 3

Install your items in your database

All items listed are not usable by default, if you want to give them a use, whether for clothing or food, you can do so by editing your scripts!

INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('pumpkin_mask', 'Pumpkin Mask', 1, 0, 1),
('haunted_lantern', 'Haunted Lantern', 1, 0, 1),
('witch_broom', 'Witch Broom', 2, 0, 1),
('spooky_ghost_cape', 'Spooky Ghost Cape', 2, 0, 1),
('vampire_fangs', 'Vampire Fangs', 0.5, 0, 1),
('black_cat_ears', 'Black Cat Ears', 0.3, 0, 1),
('lollipop_skeleton', 'Lollipop Skeleton', 0.2, 0, 1),
('pumpkin_candy', 'Pumpkin Candy', 0.1, 0, 1),
('zombie_brain_candy', 'Zombie Brain Candy', 0.2, 0, 1),
('mummy_wraps', 'Mummy Wraps', 0.3, 0, 1),
('dracula_bleeding_candies', 'Dracula Bleeding Candies', 0.2, 0, 1),
('cursed_werewolf_claw', 'Cursed Werewolf Claw', 0.5, 0, 1),
('ghoul_glow_eyes', 'Ghoul Glow Eyes', 0.2, 0, 1),
('haunted_grave_urn', 'Haunted Grave Urn', 0.8, 0, 1),
('vampire_blood_vial', 'Vampire Blood Vial', 0.3, 0, 1),
('bone_chilling_candy', 'Bone Chilling Candy', 0.2, 0, 1),
('chocolate_ghost', 'Chocolate Ghost', 0.2, 0, 1),
('chocolate_pumpkin', 'Chocolate Pumpkin', 0.2, 0, 1),
('chocolate_bat', 'Chocolate Bat', 0.2, 0, 1),
('bat_candy', 'Bat Candy', 0.2, 0, 1);

Last updated