Recent posts

#1
Servers / Grand Theft Auto [The Rockstar...
Last post by KazamaOp - May 03, 2026, 06:37 PM
Grand Theft Auto [The Rockstar Experience]

Server IP: 51.91.153.114:26331
Gamemode: The Rockstar 0.4v
Discord Server: https://discord.gg/FHzyuXtzqn
Credits Goes To The Rockstar Experience
#2
Servers / Re: Grand Theft Auto Karachi C...
Last post by KazamaOp - May 01, 2026, 06:28 PM
We regret to inform our community that Grand Theft Auto Karachi City was officially shut down on April 25, 2026.
We truly appreciate all the players, staff, and supporters who were part of our journey. Thank you for being with us
#3
General Discussion / Fake Server Impersonation repo...
Last post by KazamaOp - May 01, 2026, 11:52 AM
Dear VC:MP Development Team,

I am writing to bring a critical case of persistent impersonation, content theft, and masterlist abuse to your immediate attention. My team and I have recently rebuilt our community from the ground up after a devastating data leak, and we are now operating under the server name Grand Theft Auto [ The RockStart Experience ]. Unfortunately, a malicious individual with a long history of toxicity and hacking across VC:MP is now actively duplicating this new identity to mislead players and sabotage our fresh start. I respectfully request your help in removing the fraudulent listing and restricting this repeat offender from exploiting the masterlist any further.

The person responsible is a player known as Shadow Reaper, a member of the =VG= clan from Punjab, Pakistan. My history with him began during the development of my previous server, Grand Theft Auto: Karachi City, where he was given limited access solely for early scripting assistance. When personal grudges emerged, he turned hostile and leaked our entire server database publicly — an act of pure malice. I immediately severed all ties and permanently banned him from our spaces. After that, I chose to move on completely, rebuilding everything from scratch so our community could have a clean environment, which is how Grand Theft Auto [ The RockStart Experience ] came to life.

However, Shadow Reaper's behaviour has only grown more unhinged. He is widely recognised across VC:MP as a disruptive element; he has been officially banned from multiple servers and is strongly suspected by many administrators of using Aurora hack tools to gain unfair advantages. His reputation for toxicity and targeted harassment follows him, and now that he cannot access our community, he has resorted to cloning our very identity. He has registered a fake server and placed it on the VC:MP masterlist not only using the stolen assets from Karachi City but also deliberately copying the name of my current server, Grand Theft Auto [ The RockStart Experience ], to confuse our playerbase. The fraudulent server is running on an Optiklink host with the IP address 194.58.66.199:6959. This is a calculated attempt to impersonate us, divert traffic away from our legitimate server, and damage the trust we are trying to rebuild with players.

The duplication extends beyond the name; it is built on the foundation of data he had no right to keep, and it is advertised in a way that directly mimics our brand. This causes tangible harm by splitting our community, creating confusion, and forcing us to constantly defend our authenticity. The masterlist is meant to be a place for genuine creative experiences, and allowing a notorious hacker who has been banned from many communities to operate an impersonation server undermines the credibility of the entire platform.

I therefore urgently request that you block the server running at 194.58.66.199:6959 from the official VC:MP 0.4 masterlist immediately. If there are any measures available to flag the host or the individual's identity to prevent him from simply re-registering similar fake entries under the Optiklink range, I implore you to apply them. I am also separately reporting the abuse to Optiklink's Discord server so that the hosting account can be investigated and terminated. To support your review, I am fully prepared to supply logs, chat records, witness statements from other server owners who have banned Shadow Reaper, and direct comparisons between our authentic server and his fraudulent copy, which will leave no doubt about the impersonation and data theft.

Details of Fake Person & Server:
Server IP : 194.58.66.199:6959
Server Name: Grand Theft Auto [The Rockstar Experience]
Impersonator : =VGt=ShaDoW_ReaPeR^ , (Punjab, Pakistan) 
Impersonator's Real Public IP  :  59.103.61.13
#4
Community Plugins / Re: A.I Plugin
Last post by MEGAMIND - Apr 30, 2026, 06:53 AM
Improved & updated plugin here thats why locking this post
#5
Script Showroom / Deep Basic Dm script
Last post by DNeep - Apr 28, 2026, 07:15 AM
Deep Basic Dm script is a powerful VCMP server script designed for security, fun, and smooth gameplay. Players cannot spawn or use commands until they register or log in, keeping fake users out. It includes a secure register/login system, anti-cheat teleport detection, country join tags, colorful HUD, kill/death stats, money rewards, healing, vehicle spawn, teleport command, and command protection. Wrong password attempts kick the player automatically. Every kill gives reward money, making gameplay exciting. Bright Green, Yellow, Red, and Pink colors create a stylish server look. Perfect for DM, freeroam, and custom VCMP servers.

Download
#6
General Discussion / Re: VCMP A.I SCRIPT ASSISTANT
Last post by MEGAMIND - Apr 27, 2026, 07:51 AM
Quote from: Nihongo^ on Apr 26, 2026, 03:32 PMCan it understand Java? I've heard that some servers in VCMP are scripted using Java, but you mentioned it only has information from the wiki, which mainly covers Squirrel scripting, not Java.
nope for now its configured to wiki if theres any java wiki i can do that too
#7
General Discussion / Re: VCMP A.I SCRIPT ASSISTANT
Last post by Nihongo^ - Apr 26, 2026, 03:32 PM
Can it understand Java? I've heard that some servers in VCMP are scripted using Java, but you mentioned it only has information from the wiki, which mainly covers Squirrel scripting, not Java.
#8
Script Showroom / Re: Modular Support
Last post by PSL - Apr 24, 2026, 07:34 AM
Hey there! Thank you so so much for your detailed feedback and kind words, You're 100% right about all the issues you spotted—total my bad on the upload mix-ups and code oversights!  Also, thanks a lot for noticing the critical timer issue and mentioning S.L.C. Extended Timers. I will rebuild the timer system to support all argument types properly, so examples work correctly without errors.

Thanks again for helping me improve this framework, your feedback is really helpful. I'll upload the fixed and improved version soon.
#9
Community Plugins / Re: VCMPAI Plugin
Last post by MEGAMIND - Apr 21, 2026, 07:19 AM
Quick Examples:
function onPlayerJoin( player )
{
local reply = getChatGPTResponse("Welcome this player", player.ID, "Bad");
MessagePlayer(reply.tostring(), player);
}
function onPlayerChat( player, text )
{
print( player.Name + ": " + text );
local tone = "You are Chat GPT-3.5 Turbo. Limit your responses to 3 lines.";
local reply = getChatGPTResponse(text, player.ID, tone);
        MessagePlayer("[#FF3636]"+reply.tostring(), player);
return 1;
}
function onPlayerCommand( player, cmd, text )
{
 if(cmd == "chatgpt")
{
        local tone = "You are Chat GPT-3.5 Turbo. Limit your responses to 3 lines.";
local reply = getChatGPTResponse(text, player.ID, tone);
        MessagePlayer("[#FF3636]"+reply.tostring(), player);
}
}
#10
Community Plugins / VCMPAI Plugin
Last post by MEGAMIND - Apr 19, 2026, 05:04 PM

VCMP AI Plugin (Groq API Integration)

A VCMP (Vice City Multiplayer) plugin written in C++ using the VCMP SDK that allows your server to process player input and generate AI-powered responses using the Groq API.



Overview

This plugin makes it easy to integrate AI into your VCMP server without using Node.js, sockets, or complex external systems.

With a simple function call, you can:
  • Create AI chatbots
  • Control NPC behavior
  • Build interactive systems
  • Customize AI tone and personality

Features

  • Native C++ plugin (VCMP SDK)
  • Groq API integration
  • Simple function usage
  • No external dependencies
  • Custom AI tone support
  • Lightweight and efficient

Installation

  • Place the plugin (vcmpai32.dll or vcmpai64.dll) into your server plugins folder.
  • Start your server once — it will generate:

ai.cfg

  • Open ai.cfg and add your Groq API key.
Getting a Groq API Key

Example:
api_key=your_api_key_here

Restart your server after adding the key.

Usage

getChatGPTResponse(text, player.ID, tone)

Parameters:

  • text (string) 
    Input sent to the AI. Can include anything:

  • player.ID (integer) 
    Unique ID of the player requesting the response.

  • tone (string) 
    Controls how the AI responds (style/personality).

    Examples:
    • "friendly"
    • "sarcastic"
    • "game narrator"
    • "strict admin"
Example

getChatGPTResponse(
    "How can I earn money in this server?",
    player.ID,
    "friendly and helpful"
);

Use Cases

  • AI chatbots
  • NPC dialogue (can be used with habi2 NPC system)
  • Admin tools
  • Roleplay systems
  • Smart commands

Background

Previously, implementing AI required:
  • Node.js servers
  • WebSockets
  • Complex scripting

Now, it's just one function call.

Downloads & Source

Source GitHub

Download Plugin 32-bit 
Download Plugin 64-bit

Notes

  • Make sure your API key is valid
  • Invalid config = no AI response
  • Tone affects output heavily

Feedback

Share your ideas or suggestions below — I'll try to add improvements when I get time.