Main Menu

Recent posts

#91
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?
#92
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);
#93
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);
#94
Suggestions / List of ideas
Last post by Tema159 - May 09, 2022, 08:24:15 PM
1. Saving a profile so that when the server is restarted, the user has the same balance of money, the same weapons, completed missions, the same hairstyle, etc.
2. Launching missions through the marker.
3. Entering cheat codes.

I wish you good luck with the project!
#95
General Chat / Anti-Cheat
Last post by NotHere - May 04, 2022, 11:28:19 PM
This is not a bash on the anti-cheat it just needs improving,
I was able to restore all of my mods back to working order in an evening, granted not all bug tested but either way.

Would be a shame to see GTA fall back the mess that it was in before, where everybody just decided to nonstop attach objects to you etc.

I have several screenshots of my menus working on the latest update 1.4.1 on "Jacks No Cheats Server"
which I will not release as I do not want people trying to recreate my work and for security reasons.

-NotHere.
#96
General Chat / Re: Server List Rules
Last post by Vortrex - May 03, 2022, 03:33:20 AM
The server listing rules have been updated to change the first server rule and add a note in the second section to explain. Passed team vote on 02 MAY 2022.

Old:
Any modified server executables or other third party tools that have the capability to add servers to the server list.
New:
Any modified server executables or other third party tools that have the capability to add servers or fake/misleading info to the server list.
New Note:
False/misleading info as mentioned in the first entry of the list is any false or altered information that might mislead players. This includes (but is not limited to): altered player count and/or list to add fake players, changed server version number found in rules section at the bottom in the launcher and generally anything else that any third-party, modified server, or custom tool could intercept and/or relay false data from.
#97
Archive / Re: Allow "client" when settin...
Last post by Vortrex - April 19, 2022, 08:23:52 PM
This has been added and awaiting the next update.
Topic closed.
#98
General Chat / Re: Questions
Last post by ExBladeRUnner - April 04, 2022, 10:16:36 AM
(sorry - I still can't edit my previous posts)



How could I make the server allow mods from the client side...? (gfx mods, car replacements etc)
#99
General Chat / Re: Questions
Last post by ExBladeRUnner - April 04, 2022, 10:01:34 AM
Q: can this work with the "GTA VC The_Final_Remastered_Edition_4.2" mod?
#100
General Chat / Re: Questions
Last post by ExBladeRUnner - April 04, 2022, 08:54:31 AM
update: thanks to the server side scripts of vortrex, I am getting somewhere.....