Installations

Step 1 โžก Dependencies

This is one of the most important parts, since without the dependencies, the resource will never work or not start, here we will list the dependencies with their respective links for you to download and add them to your server.

pre-configured for PolyZone in client_editable.lua/server_editable.lua
pre-configured for ox_lib in client_editable.lua/server_editable.lua
pre-configured for ox_inventory in client_editable.lua/server_editable.lua

Step 2 โžก Resources in server.cfg

The correct order of the resources is as follows, always keeping es_extended, sfjob and its cores above, but the other normal resources below

ensure sfems

Step 3 โžก Database

Run query/SQL query and paste below code

CREATE TABLE `jobs_ems_category` (
  `id` int(11) NOT NULL,
  `name` varchar(64) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

CREATE TABLE `jobs_ems_otherdata` (
  `lastTreatments` text NOT NULL DEFAULT('[]')
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

INSERT INTO `jobs_ems_otherdata` (`lastTreatments`) VALUES
('[]');

CREATE TABLE `jobs_ems_players` (
  `id` int(11) NOT NULL,
  `cid` varchar(64) NOT NULL,
  `notes` text NOT NULL DEFAULT('[]'),
  `historyJudgments` text NOT NULL DEFAULT('[]'),
  `isDead` int(1) NOT NULL DEFAULT 0,
  `hp` int(4) NOT NULL DEFAULT 200,
  `playerDamages` text NOT NULL DEFAULT('[]'),
  `playerDamagesInfo` text NOT NULL DEFAULT('[]')
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

CREATE TABLE `jobs_ems_regulations` (
  `id` int(11) NOT NULL,
  `name` varchar(128) NOT NULL,
  `category` int(11) NOT NULL,
  `money` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

ALTER TABLE `jobs_ems_category` ADD PRIMARY KEY (`id`);
ALTER TABLE `jobs_ems_players` ADD PRIMARY KEY (`id`);
ALTER TABLE `jobs_ems_regulations` ADD PRIMARY KEY (`id`);
ALTER TABLE `jobs_ems_category` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
ALTER TABLE `jobs_ems_players` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
ALTER TABLE `jobs_ems_regulations` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;

Example data:

INSERT INTO `jobs_ems_category` (`name`) VALUES
('General wounds'),
('Other');

Step 4 โžก folder install-need-data

Copy the data to the appropriate scripts or database, everything is described there.

Step 5 โžก Click on Config

Last updated