Package Description
Admin Tag System
wasvendel_tag is an admin tag system for RedM servers, designed for both VORP and RSG frameworks.
The system displays custom 3D tags above the character’s head, with automatic distance-based scaling, Steam name display, rank detection, and configurable tag images for different admin ranks.
Main Features
- 3D Tag Display – Tags appear above the character’s head in 3D space.
- Automatic Scaling – The farther away a player is, the smaller the tag appears.
- Steam Name and Rank – Automatically displays the player’s Steam name and rank.
- Rank-Based Access – Only users with ranks defined in the configuration can enable their tag.
- Visible to Everyone – When an admin enables their tag, every player can see it.
- Custom Tag Images – Each rank can have its own custom image.
Configuration
Tags can be assigned to specific ranks in the config.lua file.
Config.Tags = {
["admin"] = {
image = "logo.png" -- File name from the ui/img/ folder
},
["superadmin"] = {
image = "superadmin.png"
},
["moderator"] = {
image = "moderator.png"
},
}
Images
- Image Folder – Place tag images inside the
ui/img/ folder. - Supported Formats – PNG, JPG, and JPEG are supported.
- Recommended Size – 150x150 pixels or larger is recommended.
- Transparent Background – Transparent PNG images are recommended for the best result.
- Matching File Names – Image file names must match the names defined in the configuration.
Functionality
- Rank Check – The script automatically detects the player’s rank through VORP or RSG.
- Tag Loading – If the player’s rank is listed in
Config.Tags, the assigned tag image is loaded. - Activation – Admins can use the
/tag command to enable or disable their tag. - Display – The tag appears in 3D above the character’s head and is visible to everyone.
- Distance Scaling – The tag automatically scales down based on distance.
Locked Files
Server-side and client-side core files are protected with CFX Escrow, while config.lua remains fully open and editable.
Dependencies