announce 1 in server.cfg, but in Master list doesnt have my server. How to bring my server to Master List??? Thank for all helping!Quote from: Xmair on Jul 18, 2026, 08:31 PMThe radar disc is already customizable. Simply place your custom radar disc here:store/maps/radar/radardisc.png
The maps are customizable as well:
* Main menu map:
store/maps/radar/region00.png - region08.png
* Radar map:
store/maps/radar/section00.png - section63.png
As for the custom weapon icons, you can use custom weapons with the default weapon XML files (available in the MVL mod examples):
https://www.gtagarage.com/mods/show.php?id=16467
Get them from this path in the MVL archive:mvl/help/samplewepxmls
and finally you can just put the weapon icon you want in the custom weapon archive.
The pause screen is not customizable.
More information here:
https://forum.vc-mp.org/index.php?topic=8.0
store/maps/radar/radardisc.pngstore/maps/radar/region00.png - region08.pngstore/maps/radar/section00.png - section63.pngmvl/help/samplewepxmlsQuote from: LamFloGaming on Jul 15, 2026, 07:21 AMHello there, After spending over a month programming my server, I feel something is still missing though I'm not sure if it's even possible to implement and that is the ability to load textures for the UI (such as the radar, radar ring, weapon icons, pause screen, etc.).
I wish everyone can help me!

local account = PostgreSQL.createAccount(
"127.0.0.1",
"postgres",
"password",
"database_name",
5432
)
local db = PostgreSQL.createConnection(account)
db:execute(
"INSERT INTO players(name, score) VALUES($1, $2)",
"player_name",
100
)
local result = db:query(
"SELECT * FROM players WHERE id = $1",
1
)
for _, row in ipairs(result) do
print(row.name, row.score)
end
local inventory = {
weapons = {
"M4",
"Shotgun"
},
money = 5000
}
db:execute(
"INSERT INTO users(data) VALUES($1)",
inventory
)