Installation
Requirements
- FiveM server
- ox_lib (required for UI menus)
Installation Steps
Step 1: Download the Resource
Download legends_blips from your Keymaster grants or the store.
Step 2: Extract to Resources
Place the legends_blips folder into your server's resources directory.
resources/
└── legends_blips/
├── fxmanifest.lua
├── config/
│ └── config.json
├── client/
│ └── client.lua
└── server/
└── server.luaStep 3: Add to Server Config
Add the following line to your server.cfg. Make sure ox_lib starts first:
ensure ox_lib
ensure legends_blips⚠️
Important: ox_lib must start before legends_blips.
Step 4: Configure ACE Permissions
The resource uses FiveM's ACE permission system. Add permissions to your server.cfg:
For Individual Players
Using their identifier (license, steam, discord, etc.):
# Using license identifier (recommended)
add_ace identifier.license:abc123def456 legends_blips.manage allow
# Using Steam identifier
add_ace identifier.steam:110000123456789 legends_blips.manage allow
# Using Discord identifier
add_ace identifier.discord:123456789012345678 legends_blips.manage allowFor Admin Groups
If you already have admin groups set up:
# Grant permission to existing admin group
add_ace group.admin legends_blips.manage allowCreating a New Group
# Create a blips manager group
add_principal identifier.license:abc123def456 group.blipsmanager
add_principal identifier.license:xyz789ghi012 group.blipsmanager
# Grant permission to the group
add_ace group.blipsmanager legends_blips.manage allow⚠️
Security Warning: Do NOT use add_ace builtin.everyone legends_blips.manage allow as this gives everyone access to blip management!
Step 5: Restart Server
Restart your server or use the refresh and ensure legends_blips commands.
Verification
After installation:
- Join your server with an account that has the
legends_blips.managepermission - Type
/manageblipsin chat - The blip management menu should open
- Without permission, you'll see "You do not have permission to use this command."
Commands
| Command | Description | Permission Required |
|---|---|---|
/manageblips | Opens the blip management menu | legends_blips.manage |
/refreshblips | Manually refreshes all blips | legends_blips.manage |
/debugconfig | Shows current config state in console | legends_blips.manage |
Need help? Join our Discord (opens in a new tab) and open a support ticket!