Jump to content
LOOKING FOR ROBLOX ASSETS? VISIT ROBLOXBAY.COM! ×
THE BEST DISCORD BACKUP BOT | PRESERVE YOUR DISCORD SERVER! ×

RobloxBay

Visit Site

FiveSecured

 

Stop shipping plaintext. FiveSecured encrypts, obfuscates, and licenses your Lua resources so customers run your work without ever holding your source.

Try for Free
  • 5decrypt-banner-v1.thumb.png.262b7992a5a4de66fd6633bf48af6c1c.png

0R-CRAFT & ATTACHMENT | Fivem Inspired Crafting Script 1.0.0

   (0 reviews)

1 Screenshot

About This File

Features

ESX/QBCore
All items can be crafted.
Craft Table and Attachment Table
Compatible with ox_inventory and qb-inventory.
 You can also customize it into custom inventories by purchasing open source.
You can multiply craft tables from config.
You can update the design color from config


Showcase : 

 

  • Nice 2

User Feedback

Recommended Comments

SleepingFox25

Posted

SQL Files is missins and preview of weapon don't work

M_a_e_x Bitter

Posted

But you still need the 0R_lib
CREATE TABLE IF NOT EXISTS 0r_crafting_queue (
    id INT(11) NOT NULL AUTO_INCREMENT,
    user VARCHAR(100) NOT NULL,
    name VARCHAR(64) NOT NULL,
    label VARCHAR(64) NOT NULL,
    count INT(11) NOT NULL,
    duration INT(11) NOT NULL,
    object TEXT;
    image TEXT,
    ingredients JSON,
    propModel VARCHAR(64),
    price INT(11) NOT NULL,
    canItBeCraftable BOOLEAN DEFAULT 0,
    status ENUM("in_progress", "completed") NOT NULL DEFAULT "in_progress",
    created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
    updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
    PRIMARY KEY (id)
) ENGINE=InnoDB AUTO_INCREMENT=1;
  • Happy 1
DominicS95

Posted (edited)

Version without 0r_lib with sql

0r-craft.rar

Edited by DominicS95
Sheriff_Oliver

Posted

New SQL Working

 

 
CREATE TABLE IF NOT EXISTS `0r_crafting_queue` (
    `id` INT(11) NOT NULL AUTO_INCREMENT,
    `user` VARCHAR(100) NOT NULL,
    `name` VARCHAR(64) NOT NULL,
    `label` VARCHAR(64) NOT NULL,
    `count` INT(11) NOT NULL,
    `duration` INT(11) NOT NULL,
    `object` TEXT;
    `image` TEXT,
    `ingredients` JSON,
    `propModel` VARCHAR(64),
    `price` INT(11) NOT NULL,
    `canItBeCraftable` BOOLEAN DEFAULT 0,
    `status` ENUM("in_progress", "completed") NOT NULL DEFAULT "in_progress",
    `created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
    `updated_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
    PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1;
 
Sheriff_Oliver

Posted

At line

Server/functions

Line 332

 

-- Format the query
    local query = "INSERT INTO `0r_crafting_queue` (user, name, canItBeCraftable, label, count, duration, image, ingredients, propModel, price) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"
Maximus5790

Posted (edited)

change the ; to a , at object in the sql

Edited by Maximus5790

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.


×
×
  • Create New...

Important Information

By continuing on Launcherleaks.net, you agree to our Terms of Use, Guidelines & Privacy Policy