Make sure you have the following dependencies installed
or or | Our tests are based on the latest version.
Installation Steps
1
Put the folder into your resources folder
2
Ensure the script in your server.cfg file.
server.cfg
ensure wasd-mixweed
3
Add the items to your inventory/framework of choice.
4
Done
Installation is complete, the script should start without problems. After that, you can visit the section to learn how to make other edits specific to your server.
Enjoy the script
The script should automatically create a new database table named wasd_weed_profiles If there is still a problem, create it manually
database.sql
CREATE TABLE
IF NOT EXISTS `wasd_weed_profiles` (
id INT AUTO_INCREMENT PRIMARY KEY,
identifier VARCHAR(255) NOT NULL UNIQUE,
characterName VARCHAR(255) NOT NULL,
exp INT DEFAULT 0,
reputation INT DEFAULT 0,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
);