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.
Not required but recommended:
Step 2 โก Resources in server.cfg
if you are using ESX โก NEVER, but NEVER, you must place the resources above es_extended, if you do this they will never work and will throw errors
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
CREATETABLE `jobs_ems_category` (`id`int(11) NOT NULL,`name`varchar(64) NOT NULL) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;CREATETABLE `jobs_ems_otherdata` (`lastTreatments`textNOT NULLDEFAULT('[]')) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;INSERT INTO`jobs_ems_otherdata` (`lastTreatments`) VALUES('[]');CREATETABLE `jobs_ems_players` (`id`int(11) NOT NULL,`cid`varchar(64) NOT NULL,`notes`textNOT NULLDEFAULT('[]'),`historyJudgments`textNOT NULLDEFAULT('[]'),`isDead`int(1) NOT NULLDEFAULT0,`hp`int(4) NOT NULLDEFAULT200,`playerDamages`textNOT NULLDEFAULT('[]'),`playerDamagesInfo`textNOT NULLDEFAULT('[]')) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;CREATETABLE `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;ALTERTABLE`jobs_ems_category`ADDPRIMARY KEY (`id`);ALTERTABLE`jobs_ems_players`ADDPRIMARY KEY (`id`);ALTERTABLE`jobs_ems_regulations`ADDPRIMARY KEY (`id`);ALTERTABLE`jobs_ems_category`MODIFY`id`int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;ALTERTABLE`jobs_ems_players`MODIFY`id`int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;ALTERTABLE`jobs_ems_regulations`MODIFY`id`int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;