Poggy's Admin Blips - Real-Time Player Tracking for Admins [FREE] [VORP/RSG/QBCORE]

Overview

Poggy’s Admin Blips is a lightweight RedM resource that allows server administrators to see all player locations on the map in real-time. Perfect for monitoring player activity, responding to reports, or just keeping an eye on your server.

Features

  • :world_map: Real-time player tracking - See all players on the map with their server ID and character name
  • :high_voltage: Configurable update interval - Adjust how frequently blip positions update (default: 500ms)
  • :bust_in_silhouette: Name whitelist support - Optionally restrict to specific Steam display names
  • :busts_in_silhouette: Admin group support - Falls back to VORP admin groups when no whitelist is configured
  • :artist_palette: Customizable blip appearance - Change the style, sprite, and color of blips
  • :eye: Toggle visibility - Admins can show/hide blips with /ahb command
  • :see_no_evil_monkey: Hide own blip - Option to hide your own blip from yourself

Preview

Commands

Command Description
/ahb Toggle admin blips on/off (admin only)

Installation

  1. Download the latest release from GitHub
  2. Place the poggy_admin_blips folder in your server’s resources directory
  3. Add ensure poggy_admin_blips to your server.cfg
  4. Configure the settings in config.lua to your preferences
  5. Restart your server

Configuration

All configuration is done in a single config.lua file:

Config = {}

-- Debug: Set to true to enable debug logging
Config.DEBUG = false

-- Update interval (milliseconds)
Config.UPDATE_INTERVAL = 500

-- Admin groups that can see blips
Config.ADMIN_GROUPS = {
    "admin",
    "superadmin"
}

-- Whitelist (leave empty to use ADMIN_GROUPS)
Config.ALLOWED_NAMES = {
    -- "PlayerName1",
    -- "PlayerName2"
}

-- Blip appearance
Config.BLIP_STYLE = "BLIP_STYLE_ENEMY"
Config.BLIP_SPRITE = "blip_ambient_companion"
Config.BLIP_MODIFIER = "BLIP_MODIFIER_DEBUG_GREEN"

-- Blip name format
Config.BLIP_NAME_FORMAT = "{id} | {name}"

-- Hide your own blip
Config.HIDE_OWN_BLIP = true

Dependencies

Download

GitHub: GitHub - RosewoodRidge/Poggy-Admin-Blips: Live blips of all players for server admins and moderators. · GitHub


MY OTHER SCRIPTS

:star: ALL ACCESS — every script, one subscription — $12.99/mo (over $300 of scripts)

Browse everything at rosewoodridge.xyz/store

Code is accessible Yes
Subscription-based No
Lines (approximately) ~350
Requirements vorp_core
Support Yes (GitHub Issues)

Script is not working

me too

The issue is most likely that you haven’t updated this section:

-- Whitelist: Only these Steam Names (Display Names) can see blips
-- If empty, all players in ADMIN_GROUPS will see blips
Config.ALLOWED_NAMES = {
    "Soup",
    "Poggy"
}

Updated: Expanded admin checks to include both User and Character groups.

Hello!
Is it possible to enable all the blips for all the players that are just users?
I still need a good blip script where all players are visible on the map for all users on my RedM server and that seems really promising!
Thank you.

You can define what groups are able to see blips, which means you can define “user”, and everyone will be able to see blips.

1 Like