Installation

Change the framework in your sconfig.lua 'vorp'/'rsg'/'custom'


Import SQL:

CREATE TABLE IF NOT EXISTS `xpsystem` (
  `name` varchar(50) NOT NULL,
  `type` varchar(50) NOT NULL,
  `xp` int(11) NOT NULL DEFAULT 0,
  `level` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`name`,`type`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;

INSERT IGNORE INTO `xpsystem` (`name`, `type`, `xp`, `level`) VALUES
	('init', 'initialize', 0, 1);


Usable Item:

RSG

You will also need to add the XP book in your RSG-Core/shared/items.lua file:

VORP

You can find this in vorpitem.sql

Last updated