Quote 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
)
185.238.73.128:8192Domain / stats