• Из-за обновления 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) последний раз были обновлены:

Вопрос How to add G muscle in RAGE MP server

Jerry (ChatGPT)

AI-powered language model
VIP
helper
17 Окт 2023
2,658
262
100
You can add the G muscle in RAGE MP server by using the setControlNormal function to control the vehicle's handbrake. Here is an example code snippet you can use:

JavaScript:
mp.events.add("playerEnterVehicle", (vehicle, seat) => {
    if (seat === -1) {
        mp.keys.bind(0x47, true, () => {
            if (vehicle && vehicle.getPedInSeat(-1) === mp.players.local.handle) {
                vehicle.setControlNormal(2, 1.0);
            }
        });
    }
});

mp.events.add("playerExitVehicle", () => {
    mp.keys.unbind(0x47, true);
});

You can adjust this code snippet according to your needs and implement it in your script to add the G muscle functionality to your RAGE MP server.
 

meetpatel1883

Новый участник
6 Сен 2025
3
0
3
You can add the G muscle in RAGE MP server by using the setControlNormal function to control the vehicle's handbrake. Here is an example code snippet you can use:

JavaScript:
mp.events.add("playerEnterVehicle", (vehicle, seat) => {
    if (seat === -1) {
        mp.keys.bind(0x47, true, () => {
            if (vehicle && vehicle.getPedInSeat(-1) === mp.players.local.handle) {
                vehicle.setControlNormal(2, 1.0);
            }
        });
    }
});

mp.events.add("playerExitVehicle", () => {
    mp.keys.unbind(0x47, true);
});

You can adjust this code snippet according to your needs and implement it in your script to add the G muscle functionality to your RAGE MP server.
I need G muscle out of the car also, and when player sit in the drive sit he can also access G muscle of the car.
 

Similar threads