Installation

The installation of this script is very simple and easy to do.

Steps

  1. Extract the .zip-File anywhere you want

  2. Edit the config.lua to your needs

  3. Import the database.sql to your FiveM database

  4. Copy the XRP_Blips folder to your resource folder at your FiveM server

  5. Edit the server.cfg and add following line: start XRP_Blips

  6. 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