N Easy Sit
⚠️
This resource supports by default ESX, QB & QBOX. For any other framework please contact me on discord (opens in a new tab).
Installation
Make sure you already have one of those targets
Buy a copy (opens in a new tab).
Download N Developments - Easy Sit from CFX Portal (opens in a new tab)
Unpack the resource n_easysit into your resources folder
- server.cfg
Resource start order
It's important for your resources to start in a logical order to prevent errors from missing dependencies.
start target # the name of your target (i.e. ox_target, qtarget, qb-target)
start n_easysitAce Permissions
add_ace group.admin n_easysit allowSQL Schema
- Execute the SQL Query you'll find inside the resource.
- Without running the provided sql query, the resource wont work.
- server.cfg
- n_chairs.sql <-
DROP TABLE IF EXISTS `n_easysit`;
CREATE TABLE `n_easysit` (
`id` int NOT NULL AUTO_INCREMENT,
`data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = DYNAMIC;
SET FOREIGN_KEY_CHECKS = 1;