• Из-за обновления GTA 5 (был добавлен новый патч) может временно не работать вход в RAGE Multiplayer.

    Ошибка: Ваша версия Grand Theft Auto V не поддерживается RAGE Multiplayer.
    ERROR: Your game version is not supported by RAGE Multiplayer.

    Данная ошибка говорит о том, что GTA V обновилась до новой версии (GTA Online тоже). Вам необходимо обновить саму игру в главном меню вашего приложения (Steam / Epic Games / Rockstar Games).
    Если после этого RAGE:MP все равно не работает - вам нужно дождаться выхода патча для самого мультиплеера (обычно это занимает от нескольких часов до нескольких дней).

    Новости и апдейты Rockstar Games - https://www.rockstargames.com/newswire/
    Статус всех служб для Rockstar Games Launcher и поддерживаемых игр: https://support.rockstargames.com/ru/servicestatus


    Grand Theft Auto 5 (+ GTA Online) последний раз были обновлены:

Проблема Onyx Cloth shop Ui

lynxarnav

Новый участник
23 Июн 2025
6
0
3
Hello, I'm having an issue with onyx. When I open the game on my local pc the cloth shop UI shows currently. I'm not talking about the dress, just the UI, like the left bar. But when I run in vps, I open all ports, 22005 UDP,22006 BOTH, 63222 TCP, 3402 TCP. The UI not shows in cloth shop it's like a blank page just when I press e only the character zoomed and acting like he is buying clothes But no UI shows up. The RIGHT bar or any text nothing. Other businesses are working fine
I rebuilt also.

I have checked the web port 63222 by requesting cloths data and it is sending data successfully from database.
 

Jerry (ChatGPT)

AI-powered language model
VIP
helper
17 Окт 2023
2,487
239
100
It seems like there might be a specific issue with the cloth shop UI loading when running the game on your VPS. Have you checked if there are any errors in the console logs related to the UI not loading? It's also worth verifying that all necessary UI assets are correctly being loaded on your VPS environment. Additionally, double-checking the network configuration to ensure that the VPS can communicate properly with the database for cloth data retrieval might be helpful in troubleshooting this issue further.
 

lynxarnav

Новый участник
23 Июн 2025
6
0
3
It seems like there might be a specific issue with the cloth shop UI loading when running the game on your VPS. Have you checked if there are any errors in the console logs related to the UI not loading? It's also worth verifying that all necessary UI assets are correctly being loaded on your VPS environment. Additionally, double-checking the network configuration to ensure that the VPS can communicate properly with the database for cloth data retrieval might be helpful in troubleshooting this issue further.
its not the ui problem cause it works perfectly when I run the server on my local pc
 

Stefan_

Начинающий специалист
16 Апр 2024
158
65
50
On the VPS, open PowerShell as an administrator and enter these commands one by one

1.
netsh advfirewall firewall add rule name="ragemp server" dir=in action=allow protocol=TCP localport=63222
2.
netsh advfirewall firewall add rule name="ragemp server" dir=out action=allow protocol=TCP localport=63222
 

lynxarnav

Новый участник
23 Июн 2025
6
0
3
On the VPS, open PowerShell as an administrator and enter these commands one by one

1.
netsh advfirewall firewall add rule name="ragemp server" dir=in action=allow protocol=TCP localport=63222
2.
netsh advfirewall firewall add rule name="ragemp server" dir=out action=allow protocol=TCP localport=63222
1753810957541.png

1753811015922.png


Nothing changed sir
 

lynxarnav

Новый участник
23 Июн 2025
6
0
3
Guys I have fixed the issue. If you face this issue you have to make some changes in src/server/modules/user.ts

Replace
this.player.call('setLogin', [
system.playerSignature(this.id),
!mp.config.announce,
this.player.ip !== '127.0.0.1' ? (mp.config.bind ? mp.config.bind : getIp()) : '127.0.0.1',
]);

->

this.player.call('setLogin', [
system.playerSignature(this.id),
!mp.config.announce,
this.player.ip !== '127.0.0.1' ? (mp.config.publicIp ? mp.config.publicIp : getIp()) : '127.0.0.1',
]);


and in conf.json
add
"publicIp": "vps public ip",

the issue was
cef.da35c202.js:136 GET http://0.0.0.0:3402/socket.io/?EIO=4&transport=polling&t=PXNLAvE net::ERR_ADDRESS_INVALID

I got it from cef debugger ragemp

the cef was using bind ip not the actual ip to get the data from port 63222



If anyone has better option to fix it then you can replay
because in my fix, If you dont have a static public ip then you have to change the public ip everytime in conf.json when the ip changes.