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

Проблема Помогите решить проблему при входе на сервер

GoodLuck

Активный участник
Автор темы
26 Сен 2020
61
17
27
1601402004810.png
это при входе на сервер.
 

GoodLuck

Активный участник
Автор темы
26 Сен 2020
61
17
27
Код из серверной части :

C#:
            { "G63", new Dictionary<int, List<Tuple<int, string, int>>>() {
                { 1, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Пороги", 22000),
                }},
                { 2, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Капот", 22000),
                }},
                { 3, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Спойлер", 22000),
                }},
                { 4, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Решетка", 22000),
                }},
                { 5, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Крылья", 22000),
                }},
                { 6, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Люстра", 22000),
                }},
                { 8, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Бампер", 13000),
                }},
                { 9, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Бампер", 13000),
                }},

Клиенская:
JavaScript:
"G63":{
"1":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Пороги","Item3":22000}],
"2":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Капот","Item3":22000}],
"3":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Спойлер","Item3":22000}],
"4":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Решетка","Item3":22000}],
"5":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Крылья","Item3":22000}],
"6":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Люстра","Item3":22000}],
"8":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Бампер","Item3":13000}],
"9":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Бампер","Item3":13000}]},
 

Harland David Sanders

Куратор портала
Команда форума
Куратор портала
VIP
high coder
media
10 Сен 2020
3,058
2,443
219
Код из серверной части :

C#:
            { "G63", new Dictionary<int, List<Tuple<int, string, int>>>() {
                { 1, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Пороги", 22000),
                }},
                { 2, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Капот", 22000),
                }},
                { 3, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Спойлер", 22000),
                }},
                { 4, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Решетка", 22000),
                }},
                { 5, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Крылья", 22000),
                }},
                { 6, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Люстра", 22000),
                }},
                { 8, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Бампер", 13000),
                }},
                { 9, new List<Tuple<int, string, int>>() {
                    new Tuple<int, string, int>(-1, "AMG", 5000),
                    new Tuple<int, string, int>(0, "Brabus Бампер", 13000),
                }},

Клиенская:
JavaScript:
"G63":{
"1":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Пороги","Item3":22000}],
"2":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Капот","Item3":22000}],
"3":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Спойлер","Item3":22000}],
"4":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Решетка","Item3":22000}],
"5":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Крылья","Item3":22000}],
"6":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Люстра","Item3":22000}],
"8":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Бампер","Item3":13000}],
"9":[{"Item1":-1,"Item2":"AMG","Item3":5000},
{"Item1":0,"Item2":"Brabus Бампер","Item3":13000}]},

В клиентской части пропущена скобка [
 
  • Like
Реакции: GLHF

Evbej

Начинающий специалист
high coder
15 Сен 2020
103
43
60
Последнее редактирование:
  • Like
Реакции: GLHF

skyElmax

Специалист
high coder
15 Сен 2020
151
96
85
  • Like
Реакции: Mikhayloff