wasd
DiscordTebex
  • Welcome
  • Getting Started
    • What is Escrow
  • Other Things
    • Editing localization files
  • Resources
    • Mix-Weed
      • Installation
      • How To Do
        • Items
        • Config
      • Modules
        • Weed Type
        • Recipe Type
          • Recipe onUsed
    • ATM Robbery [Free]
      • Items
    • 24/7 Shop
    • Multiplayer Delivery Job
    • 🗞️Multiplayer Newspaper Job
    • Multiplayer Garbage Job
    • Multiplayer Tow Job
      • Exports / Events
    • Daily Rewards Script
Powered by GitBook
On this page
  • Requirements
  • Installation Steps
  1. Resources
  2. Mix-Weed

Installation

PreviousMix-WeedNextHow To Do

Last updated 2 months ago

Requirements

Make sure you have the following dependencies installed

  1. 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
    );
ESX
QB
QBOX
ox_lib
oxmysql
Check this part
how to do