Main Menu

Recent posts

#1
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.
#2
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 )
#3
General Chat / GTA San Andreas APK: Tudo o qu...
Last post by AbdulConnolly - September 26, 2024, 05:29:20 AM
GTA San Andreas é um dos jogos mais icônicos da Rockstar Games. Lançado originalmente para PlayStation 2 em 2004, ele rapidamente se tornou um clássico, cativando milhões de jogadores em todo o mundo. Com o avanço da tecnologia, agora é possível jogar GTA San Andreas em dispositivos móveis através do arquivo APK. Neste artigo, vamos explorar tudo o que você precisa saber sobre o GTA San Andreas APK.
Download : https://modilimitado.io/pt/gta-san-andreas-apk

O que é GTA San Andreas APK?
GTA San Andreas APK é o formato de arquivo usado para instalar o jogo Grand Theft Auto: San Andreas em dispositivos Android. APK significa "Android Package Kit", e é o arquivo que permite que os usuários instalem aplicativos e jogos fora da Google Play Store.

Vantagens de Usar APK
Acesso Antecipado: Muitas vezes, novos jogos e atualizações são lançados primeiro em formato APK.
Disponibilidade Offline: Você pode instalar e jogar o jogo sem precisar de uma conexão constante à internet.
Customização: Os arquivos APK podem ser modificados para incluir mods e outras personalizações.
Como Baixar e Instalar GTA San Andreas APK
Passo 1: Permitir Instalação de Fontes Desconhecidas
Antes de baixar e instalar o APK, você precisa permitir a instalação de aplicativos de fontes desconhecidas no seu dispositivo Android. Vá para Configurações > Segurança e habilite a opção Fontes Desconhecidas.

Passo 2: Baixar o Arquivo APK
Procure por um site confiável para baixar o GTA San Andreas APK. Certifique-se de que o site seja seguro para evitar malware e vírus.

Passo 3: Instalar o APK
Após o download, abra o arquivo APK e siga as instruções na tela para instalar o jogo. Isso pode levar alguns minutos, dependendo do seu dispositivo.
#4
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.
#5
General Chat / Re: Steam deck
Last post by ChrisV1 - September 03, 2024, 02:07:17 AM
Nevermind got it working, watch a video guys
#6
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.
#7
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
#8
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
#9
General Chat / .
Last post by MGibson191 - July 07, 2024, 03:31:41 AM
.
#10
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.