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.
QuoteTypeError: client.player is null
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;
}
});
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.