Installation guide — please follow each step carefully and exactly as described to ensure the script works correctly on your server. Skipping or modifying steps may cause the system to not function properly, so follow it step by step.
This script requires some mandatory dependencies to function correctly. Make sure to download and extract them inside your server’s main directory, keeping their original folder structure intact.
This script may cause conflicts or errors if you use other ambulance systems on your server.Common examples include qb-hospital, esx_ambulancejob or other similar ambulance scripts. It’s strongly recommended to remove them completely before installation to prevent compatibility or functionality issues.
This script includes an essential database required for its operation.You must import it before starting your server, preferably using HeidiSQL or any other manager compatible with MariaDB/MySQL.
ESX
sql
ALTER TABLE `users` ADD IF NOT EXISTS `ems_duty` LONGTEXT NULL DEFAULT NULL;
ALTER TABLE `users` ADD IF NOT EXISTS `is_dead` TINYINT(1) NULL DEFAULT '0';
CREATE TABLE IF NOT EXISTS `hospitals` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`creator` VARCHAR(50) NOT NULL DEFAULT '0' COLLATE 'utf8mb3_general_ci',
`zone` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`respawnPoint` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`blip` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`duty` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`stash` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`boss` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`checkIn` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`wardrobe` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`shop` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`garage` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
PRIMARY KEY (`id`) USING BTREE
)
COLLATE='utf8mb3_general_ci'
ENGINE=InnoDB
;
QB
sql
CREATE TABLE IF NOT EXISTS `hospitals` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`creator` VARCHAR(50) NOT NULL DEFAULT '0' COLLATE 'utf8mb3_general_ci',
`zone` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`respawnPoint` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`blip` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`duty` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`stash` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`boss` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`checkIn` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`wardrobe` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`shop` LONGTEXT NOT NULL COLLATE 'utf8mb3_general_ci',
`garage` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
PRIMARY KEY (`id`) USING BTREE
)
COLLATE='utf8mb3_general_ci'
ENGINE=InnoDB
;
Before using the hospital creator system, make sure you have administrator permissions configured on your server. Without the correct permissions, the menu will not open.
To access the hospital creation interface, use the following command directly in the in-game chat:
lua
/hospital_creator
Once executed, the Quasar Medical Creator menu will appear automatically. From this interface, you can create, edit, and fully configure hospitals visually and in real time without needing to manually edit configuration files.
The system is designed to simplify hospital management, allowing administrators to quickly place medical zones, interaction points, beds, pharmacies, wheelchairs, and other important medical features directly in-game.