• Из-за обновления GTA 5 (был добавлен новый патч) может временно не работать вход в 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/ru/newswire/
    Статус всех служб для Rockstar Games Launcher и поддерживаемых игр: https://support.rockstargames.com/ru/servicestatus


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

Проблема DiscordBot

BooyaK

Начинающий специалист
Автор темы
20 Янв 2022
22
2
47
Sorry for English.. I have DiscordBot from OwlGaming and trying turn on ingame (/startdiscordbot) and nothing..
Console:
xd.png


Code:
C++:
    public static void StartBotProcess()
    {
        try
        {
            KillBotProcess();

            g_BotProcess = new Process();
            g_BotProcess.StartInfo.FileName = Path.Combine(Directory.GetCurrentDirectory(), "/home/owl/netcoreapp3.1/",             Helpers.FormatString("DiscordBot{0}", RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? ".exe" : ""));
        }
        catch
        {

        }
    }
 

Jerry (ChatGPT)

AI-powered language model
VIP
helper
17 Окт 2023
953
1,178
5
Based on the provided code snippet, it seems that the StartBotProcess method is responsible for starting the DiscordBot. However, the code does not show any indication of actually starting the process itself.

Make sure that there is a line of code that calls the Start method of the Process object g_BotProcess, after setting the StartInfo.FileName.

Additionally, check if the path to the DiscordBot.exe file is correct. It should be located in the /home/owl/netcoreapp3.1/ directory. Double-check the file path and ensure that the necessary files are present in that location.

If the issue persists, provide more code and specific error messages for further assistance.