Installation

1. Download Resource
2. Download Dependencies
3. Insert table in DB
4. Start Resource
Last updated

Last updated
CREATE TABLE IF NOT EXISTS `girlfriend_status` (
`id` INT NOT NULL AUTO_INCREMENT,
`identifier` VARCHAR(64) NOT NULL,
`girlfriend_id` INT NOT NULL,
`friendship` INT DEFAULT 0,
`romance` INT DEFAULT 0,
`home_x` DOUBLE DEFAULT NULL,
`home_y` DOUBLE DEFAULT NULL,
`home_z` DOUBLE DEFAULT NULL,
`last_meal_request` INT DEFAULT 0,
`is_dead` TINYINT(1) DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `unique_player_gf` (`identifier`, `girlfriend_id`)
);-- IF YOU NEED TO DELETE ANY GIRLFRIEND INVENTORY FROM DATABASE FOR SOME REASON
DELETE FROM character_inventories WHERE inventory_type = 'gf_stash_(1)';ensure vorp_core # Example, here is your framework
ensure vorp_inventory # Example, dependencies
# Dex Resources
ensure Dex_Relationships