Main Menu

Recent posts

#1
General Chat / Re: Steam deck
Last post by ChrisV1 - September 03, 2024, 02:07:17 AM
Nevermind got it working, watch a video guys
#2
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.
#3
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
#4
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
#5
General Chat / .
Last post by MGibson191 - July 07, 2024, 03:31:41 AM
.
#6
General Chat / I can't get multuplayer coop t...
Last post by KaterinaVT - July 06, 2024, 12:56:45 AM
Any hints or tips?  Any common problems?  Please assist if you can. Thank you.
#7
General Chat / I get a server listing and can...
Last post by KaterinaVT - July 03, 2024, 03:45:58 AM
I figured this answer out on my own but now having problems getting mutli player coop to run with GTA IV....
#8
Scripting Help / Re: skin changer
Last post by volvofan - June 24, 2024, 10:30:47 PM
Your 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?
#9
Scripting Help / Pay 'n' Spray and Shops for GT...
Last post by bigbodybenz - June 18, 2024, 11:54:22 AM
Hello! Can someone write a resource that will return the ability to purchase weapons in the store both in single-player mode and also the working Pay n spray? Sorry that I have to ask someone to write it, I just don't have any experience in programming.
#10
Scripting Releases / Re: Vortrex's Essential Resour...
Last post by bigbodybenz - June 17, 2024, 03:26:00 PM
Hello! can you please add the code for v-spawnscreen? I need to make sure that a random skin is installed in GTA Vice City upon spawning. I can write the IDs of the skins myself in the file, I just need random skins to be installed at spawn. I tried to write this myself, but since I have no experience, it didn't work out...