Main Menu

Recent posts

#11
General Chat / Re: Server.xml Tweaks
Last post by Willa_Doo - January 15, 2025, 02:06:05 AM
Quote from: Vortrex on December 26, 2024, 08:03:48 PMYou can see all configuration options here:
https://wiki.gtaconnected.com/ServerConfiguration

Most of the options related to sync and element streaming is toward the bottom of the main list on that page.

Thank you for your help but it seems that player to player desync is still an issue along with game elements such as peds and ped vehicles don't sync as fast as they should resulting in traffic bouncing and sliding from side to side on the roads. Not sure what I could do to correct this since tweaking the sync intervals to be 10 and packet priority to immediate.
#12
Scripting Help / Re: Pay 'n' Spray and Shops fo...
Last post by Vortrex - January 08, 2025, 10:03:21 PM
Just a quick update: This was coded incorrectly, and the "Singleplayer" cvar had no effect on pay-and-sprays or bomb shops. This has been fixed in the latest client update (1.6.17)
#13
Scripting Help / Re: client.player.position
Last post by Vortrex - January 08, 2025, 10:00:33 PM
For a server side script, use client.player.

For client-side, the easiest way to access your player is with localPlayer
For any other player (as long as they're streamed in), use client.player like you would in a server script.
#14
General Chat / Re: Server.xml Tweaks
Last post by Vortrex - December 26, 2024, 08:03:48 PM
You can see all configuration options here:
https://wiki.gtaconnected.com/ServerConfiguration

Most of the options related to sync and element streaming is toward the bottom of the main list on that page.
#15
General Chat / Server.xml Tweaks
Last post by Willa_Doo - December 26, 2024, 06:58:00 PM
Hello all.

I was curious if there were any tweaks to the Server.xml file that would improve the sync between players when hosted on a personal computer / server. Should there be any other tweaks of modifications to the file that should be known please let them be known.

Anything helps
#16
Scripting Help / client.player.position
Last post by tucson913 - December 21, 2024, 11:05:50 AM
Hi all!

I have problem with the player position.

I wrote a simple vehicle spawn command and I get this error message:
QuoteTypeError: client.player is null

The client.player exists only on client side? Or how can I get the player position?
Thank you!

Code:
addEventHandler('OnPlayerCommand', (event, client, command, parameters) => {

    console.log(`(Command) ${client.name} has used the command '/${command} ${parameters}'.`);
   
      switch(command){
        case "v":
            case "veh":
                case "vehicle":
                    var veh = gta.createVehicle(parseInt(parameters), client.player.position);
                    addToWorld(veh);
                    client.player.warpIntoVehicle(veh, 0);
        break;

        default:
            message("UNK CMD");
        break;
      }
});

#17
Suggestions / Re: New scripting language. Pa...
Last post by jack1989 - December 17, 2024, 04:33:36 PM
"The new scripting language related to Pawno sounds like an exciting development! It could open up more opportunities for customization, efficiency, and creativity in game development. For those familiar with Pawno, this could streamline scripting and offer advanced features for server management. Website Exploring its potential could lead to some incredible projects!"






#18
Advertisements / Connected Roleplay
Last post by Vortrex - December 07, 2024, 05:45:40 PM

Connected Roleplay
The official roleplay server of GTA Connected!

Discords
GTA III  •  GTA Vice City  •  GTA IV  •  Mafia 1

Connect
Click one of the games below to connect to the server!
GTA III   •   GTA Vice City   •   GTA IV   •   Mafia 1

Connect
  • Public jobs
  • Clans with custom ranks, permissions, pay, titles, and more
  • Custom inventory system where everything is an item. Food, weapons, devices, etc
  • All items can be dropped, given, used, picked up, or stored in certain places
  • Ownable vehicles/houses/businesses, and more
  • Stock your business with any items you want, and set custom prices
  • No hard cap to how many things you can own
  • Security features like 2FA, email alerts for login attempts, and more
  • Animations for extra RP goodness
  • Community-provided translations for GUI and server messages
  • Double paychecks on weekends!
  • Too many other things to list here
  • Also available on Mafia Connected
Connect
Add the servers to your favorite list for easy connecting!
#19
Scripting Releases / Re: [JS] Gamemode for fun time...
Last post by Vortrex - November 29, 2024, 01:50:15 PM
Quote from: Toejam on November 04, 2024, 04:12:22 PMTell me, does GTA Connect support the drive-by option? When a passenger, while in a car, can shoot from it, like gangs?
Not with scripting, no.
#20
Scripting Help / Re: Pay 'n' Spray and Shops fo...
Last post by Vortrex - November 29, 2024, 01:46:50 PM
Enable singleplayer features and scripts using the following in server.xml:
<cvar name="singleplayer" value="1" />
<cvar name="scripts" value="1" />