🚀Blips Menu

Step by step installation guide for ESX and QB, common issues & solutions, troubleshooting guide, code snippets, changelog.

Installation

1º Import blips.sql in your DB.

CREATE TABLE `user_blips` (
	`id` int NOT NULL AUTO_INCREMENT,
	`identifier` varchar(90) NOT NULL,
	`blipcoords` VARCHAR(120) NOT NULL,
        `blipdata` VARCHAR(230) NOT NULL,
	`bliptype` VARCHAR(20) NOT NULL,
        `created` DATE DEFAULT CURRENT_DATE,
	PRIMARY KEY (`id`)
);

2º Add the xex_blipsmenu folder to your resources and initialize it in your server.cfg.

start xex_blipsmenu

Configuration

Translation

English is included as a base language and Spanish as an extra language. To change a language you need to modify the values in the locales.lua file, and also modify some text strings in the script and HTML.

Usage

To use the mod you must open the big map and press Config.OpenMenuMapping) space by default).

With the basic configuration anyone can create private blips, and administrators can create public blips. You will have to add the allowed roles to Config.AdminRoles.

There are 2 ways to create a blip:

  • By Coordinates

  • Selecting on map

There are 3 types of blips:

  • Normal

  • Square Area

  • Circle Area

Whitelisted Jobs

Public blips can be whitelisted by job. Just add all job names you want in the input field separated by commas.

All blips are stored in the database and are reloaded when the server is started again.

Last updated