Installation
The installation of this script is very simple and easy to do.
Steps
Extract the .zip-File anywhere you want
Edit the config.lua to your needs
Import the database.sql to your FiveM database
Copy the XRP_Blips folder to your resource folder at your FiveM server
Edit the server.cfg and add following line: start XRP_Blips
Restart your Server and have fun with this script.
SQL Database Command
CREATE TABLE IF NOT EXISTS `xrp_blips` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`CreatedBy` longtext NOT NULL,
`Name` varchar(24) NOT NULL,
`Color` int(11) NOT NULL,
`Icon` int(11) NOT NULL,
`Position` longtext NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
COMMIT;
QB Core Version
If you are using the QB Core Version of my plugin you have to add following line into "qb-core\client\events.lua" --> PlayerLoaded:
TriggerEvent('XRP:Client:LoadBlips')
Optional
You can delete the "database.sql" - file after you executet it.
Last updated