Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/isigar/relisoft_tag
ESX Tag for mods/admin
https://github.com/isigar/relisoft_tag
esx fivem rcore relisoft tag
Last synced: about 5 hours ago
JSON representation
ESX Tag for mods/admin
- Host: GitHub
- URL: https://github.com/isigar/relisoft_tag
- Owner: Isigar
- Created: 2019-08-30T12:05:15.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-29T17:03:22.000Z (over 1 year ago)
- Last Synced: 2023-04-29T18:31:50.382Z (over 1 year ago)
- Topics: esx, fivem, rcore, relisoft, tag
- Language: Lua
- Homepage: https://rcore.cz
- Size: 26.4 KB
- Stars: 4
- Watchers: 2
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# relisoft_tag
### ESX Tag for mods/admin**Our discord with more scripts: https://discord.gg/F28PfsY**
Eazy tag system with configuration
**Installation**
1) Put into relisoft_tag folder into your resource folder
2) Start after es_extended/qbcore in your server.cfg
3) Edit config.lua file to fit your needs**Configurations**
`Config.SeeOwnLabel = true/false`
- if true you will be see your own tag above yourself`Config.TextSize = 1.5`
- font size for tags more is bigger`Config.ZOffset = 1.2`
- offset for tag that determinate how much will be tag above player`Config.NearCheckWait = 500`
- miliseconds to check if player is near any admin- You can change your labels for admin groups in here
```
Config.GroupLabels = {
ESX = {
-- group system that used to work on numbers only
[1] = {
[1] = "HELPER",
[2] = "~g~MODERATOR",
[3] = "~b~ADMINISTRATOR",
[4] = "~r~GOD",
[5] = "~r~GOD",
},
-- group system that works on name
[1] = {
helper = "HELPER",
mod = "~g~MODERATOR",
admin = "~b~ADMINISTRATOR",
superadmin = "~r~GOD",
},
},QBCore = {
-- group system that works on ACE
[1] = {
god = "~r~GOD",
admin = "~b~ADMINISTRATOR",
mod = "~g~MODERATOR",
},
}
}
```
- Settings for tag labels, key in table is for group or permission level, you can change it
to fit your needs.