Installation

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

Last updated
CREATE TABLE IF NOT EXISTS dex_treasure_event (
id INT NOT NULL AUTO_INCREMENT,
active TINYINT(1) NOT NULL DEFAULT 1,
x DOUBLE NOT NULL,
y DOUBLE NOT NULL,
z DOUBLE NOT NULL,
chest_model VARCHAR(64) NOT NULL,
radius DOUBLE NOT NULL,
config_json LONGTEXT NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (id)
);ensure vorp_core # Example, here is your framework
ensure vorp_inventory # Example, dependencies
# Dex Resources
ensure Dex_TreasureHunting