Vice City: Multiplayer

Server Development => Scripting and Server Management => Script Showroom => Topic started by: Vicky on Jan 25, 2026, 01:00 PM

Title: [SCRIPT] Vicky's Viceverse
Post by: Vicky on Jan 25, 2026, 01:00 PM
Hello everyone! I wanted to open-source my work which I left incomplete due to irl reasons. It has basic things like account system (requires DOB to register), XP system, ranks according to the level, prefix tags in chat, Vehicle System and maybe more. Everyone's free to modify and use it. I don't have any plans returning to VC:MP right now but playing here was one of my best memories to get reminded of.

Link:
https://www.mediafire.com/file/5ih023ahhvb9yaw/main.nut/file
Title: Re: [SCRIPT] Vicky's Viceverse
Post by: Vicky on Jan 25, 2026, 01:08 PM
Also, you can make yourself a default admin by changing to your name here in this part in function onScriptLoad()

// Add vicky as admin if not exists
local q = QuerySQL(db, "SELECT * FROM Admins WHERE Name='vicky'");
if (!q) {
QuerySQL(db, "INSERT INTO Admins (Name) VALUES ('vicky')");
}
if (q) FreeSQLQuery(q);