Main Menu

Recent posts

#21
Scripting Help / Re: skin changer
Last post by Vortrex - November 29, 2024, 01:45:13 PM
Quote from: volvofan on June 24, 2024, 10:30:47 PMYour script does not work for me in GTA 3. I just get: TypeError: localPlayer is null for the line localPlayer.skin = skinId;.
It seems like there isn't any script yet for skin-changing here: https://github.com/VortrexFTW/v-essentials
Maybe in the future?

Yes, I'll make one.
#22
Scripting Help / Re: problem function
Last post by Vortrex - November 29, 2024, 01:44:29 PM
Strange. The function does exist.
#23
Suggestions / Re: New scripting language. Pa...
Last post by Vortrex - November 29, 2024, 01:39:40 PM
New scripting languages are possible, but our efforts are focused on other features and fixes right now. We'll take it into consideration.

As for textdraws, you can use a GUI library like MexUI or the HTML stuff to script a SAMP-like GUI system.
#24
Suggestions / New scripting language. Pawno
Last post by olegshteker - November 06, 2024, 08:06:41 AM
Hello everyone. I would like to see the Pawno language in GTA Connected for all 4 games, III, VC, SA and IV. This will be very convenient for migrating servers from other multiplayers, whose server mod is written in this scripting language, in particular from SA-MP 0.3.7, VC-MP 0.3z R2 and VMP (Vice Multi-Player).

Also for Pawno I would like to see Textdraws, dialogues from SA-MP for all 4 games, and the rest of your functionality.

Thank you for your attention, I will wait for an answer. Oleg_Shteker.
#25
Scripting Releases / Re: [JS] Gamemode for fun time...
Last post by Toejam - November 04, 2024, 04:12:22 PM
Hello! I am immensely grateful to you and the author of GTA Connected for the opportunity to play with a friend in "single mode" online! You wrote on GitHub that you are not going to support the script. I would like to continue its development. I have a small team with a programmer and a tester. At the moment, we are studying the GTA Connected wiki and some difficulties are arising.

Tell me, does GTA Connect support the drive-by option? When a passenger, while in a car, can shoot from it, like gangs?

I have a example from MTA

P.S. I use google translator, I'm from Russia
function setDoingDriveby ( )
        -- we check if local player isn't currently doing a gang driveby
        if not isPedDoingGangDriveby ( localPlayer ) then
                -- if he got driveby mode off, turn it on
                setPedWeaponSlot ( localPlayer, 4 )
                setPedDoingGangDriveby ( localPlayer, true )
        else
                -- otherwise, turn it off
                setPedWeaponSlot ( localPlayer, 0 )
                setPedDoingGangDriveby ( localPlayer, false )
        end
end
addCommandHandler ( "driveby", setDoingDriveby )
#26
Suggestions / GTA 4 Shooting Fix
Last post by crankdawgg - September 25, 2024, 08:03:25 AM
I was playing GTA 4 online and as an FPS addict I tried some gun fights with people. They destroyed me since the recoil is broken and they kept killing me while invisible. Switching to GTA C fixed the recoil issue, but not the latter.

There is a well known bug in GTA 4 when shooting weapons. You can shoot someone while being completely hidden behind cover if you stand at the right angle. B Dawg said it could be because bullets shoot out of the center of your screen rather than the gun itself, and with an off-center character model, this allows shooting from behind cover.

It really ruins PvP and fighting overall. If there was a fix to this it would be super beneficial.
#27
General Chat / Re: Steam deck
Last post by ChrisV1 - September 03, 2024, 02:07:17 AM
Nevermind got it working, watch a video guys
#28
General Chat / Steam deck
Last post by ChrisV1 - September 03, 2024, 12:47:01 AM
Is there a guide for the Steam Deck anywhere? I can't find one.
#29
Russian - Русский / Система регистрации
Last post by Jessie - August 08, 2024, 11:35:40 AM
Система регистрации для сервера GTA Connected

Следуйте этим шагам, чтобы настроить систему на своем сервере:

1.Создайте папку server\functions в корневой директории вашего сервера.

2.Переместите файлы auth.js и main.js в папку functions.

3.Отредактируйте файл meta.xml в корневой директории сервера, добавив следующие строки:


<script src="./server/functions/auth.js" type="server" language="javascript" />
<script src="./server/functions/main.js" type="server" language="javascript" />

4.Вам останется реализовать логику камеры в исходнике main.js и в исходнике auth.js логику spawn

Скачать систему можно в моем GitHub
#30
Scripting Help / problem function
Last post by Jessie - August 06, 2024, 10:23:47 AM
can anyone explain to me?

Console error:
TypeError: gta.setCameraLookAt is not a function

My code:
var cameraPosition = new Vec3(-1000.0, 191.5, 12.0);
var cameraLookAtPosition = new Vec3(-1000.0, 185.5, 11.5);
var jumpCut = true;

addEventHandler("OnPlayerJoined", (event, client) => {
    if (typeof gta !== 'undefined' && gta !== null) {
        gta.setCameraLookAt(cameraPosition, cameraLookAtPosition, jumpCut);
   
    }
});

Game Gta VC