Main Menu

Recent posts

#81
General Chat / Re: Why does my gtac always sh...
Last post by Anonymous - June 20, 2022, 02:39:24 PM
Several players are experiencing this issue, we will be looking into it sometime soon.
#82
General Chat / Re: Why does my gtac always sh...
Last post by Vortrex - June 20, 2022, 02:34:36 PM
Probably the "Great Firewall of China"
#83
Suggestions / single player
Last post by 4oYReN - June 17, 2022, 04:12:13 AM
Hello I would like you to make it possible to play a single player campaign in the launcher, because I get an error that I don't have a rockstar launcher in GTA:IV. Sorry if something is not clear I write through a translator
#84
General Chat / Why does my gtac always show d...
Last post by 12number - June 11, 2022, 07:09:58 AM
I come from China. I use the IP address of Hong Kong. I don't know why it always shows that I can't connect
#85
Advertisements / Argonath RPG [GTAIII]
Last post by Diego - June 05, 2022, 02:11:16 AM

Argonath RPG is coming to GTA Connected
Join the discord server https://discord.io/ArgonathRPGIIIMP
IP Address: Announced on June 28th

Hey, everyone!

We just want to thank the players of Argonath and GTA:C for tagging along on our III:MP journey. It's been great having you guys alongside, and we appreciate your patience as we work on the III:MP server.

We still have some ways to go. Don't get me wrong. However, we've turned a corner and we're really making progress.

On the 28th, we'll be releasing III:MP's Open Beta Phase 1! This means we'll be opening up the server to the players to come to see what we've got so far, and how it's all coming along! After all, we're a community. Makes sense to bring you guys along for the ride. We also feel that y'all can help us with more relevant feedback by playing the server and experiencing the scripts for yourself.

We've got plenty in the works. Web panel's in the works, and yes, you'll get access to it too as part of the open beta! We're getting ideas and structure for factions ready, we're evaluating how various things will work, and of course, by releasing this open beta, we'll get an idea of what you guys think as well. UI integrations are also in the works, this is a client-side thing we're waiting on, but it's getting there.

We appreciate the patience y'all have shown, and thank you for coming along on this ride with us, we look forward to having you guys on board.

Screenshots







#86
Scripting Releases / Re: [SQ] GTA V Style Character...
Last post by ReKiLL - May 25, 2022, 10:00:46 PM
is compatible with gta iv?
#87
Scripting Releases / Re: [JS] Server name changer
Last post by ReKiLL - May 25, 2022, 09:25:41 AM

good script   :)
#88
General Chat / Need Serial key after downgrad...
Last post by BorgDrone01 - May 21, 2022, 02:16:27 PM
I installed the steam version downgraded it, and now it asks for a serial key that steam won't show me
any ideas how to fix this?
#89
Module Releases / Terminal Bell Module
Last post by Vortrex - May 18, 2022, 10:23:42 PM
This is a simple terminal bell module for those who want to use it for their server. Most of the functions have been lightly tested, but if you run into any issues please report them on the GitHub issues page for the repository.

Download:
https://github.com/VortrexFTW/mod_bell/releases

Instructions:
Place into your server's "modules" folder and put "<module src="module_folder_name/module_file_name" />" into the modules section of your server XML. Be sure to include the folder your modules are stored in (it's relative to the main server directory) and do not include a file extension.
<modules>
    <module src="modules/mod_bell" />
</modules

JavaScript Example:
if(chatMessage.indexOf("!admin") != -1) {
module.bell.ring();
}

Available Functions:
bool = module.bell.ring(void);
#90
Module Releases / SMTP Module
Last post by Vortrex - May 18, 2022, 10:21:41 PM
This is a simple SMTP module for those who want to use it for their server. Most of the functions have been lightly tested, but if you run into any issues please report them on the GitHub issues page for the repository.

Download:
https://github.com/VortrexFTW/mod_smtp/releases

Instructions:
Place into your server's "modules" folder and put "<module src="<I>module_folder_name/module_file_name</I>" />" into the modules section of your server XML. Be sure to include the folder your modules are stored in (it's relative to the main server directory) and do **not** include a file extension.
<modules>
    <module src="modules/mod_smtp" />
</modules

JavaScript Example:
module.smtp.send("smtp.yourmailserver.com, 465, true, "yourusername", "yourpassword", "[email protected]", "Firstname Lastname", "Testing", "Testing the email module!", "[email protected]", "Firstname Lastname");
Available Functions:
void module.smtp.send(string host, int port, bool useTLS, string smtpUser, string smtpPassword, string toEmail string toName, string subject, string body, string fromEmail, string fromName);