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

Результаты поиска

  1. PercyBerkeley

    Вопрос Не могу найти код

    Those banners are within a DLC.
  2. PercyBerkeley

    Предосторожности на пути запуска проекта

    Working with professionals. If you're going to work with a 15-year-old FiveM programmer, I'll probably find your server leaked on GitHub later. On my personal side, I work alone, which takes three times as long, yes, but I avoid these unpleasant moments. Because the people I trust aren't really...
  3. PercyBerkeley

    Нужен форум для проекта

    I really don't know what's going on in the heads of newcomers... This forum has people with years of experience and a good reputation. How do you, a newcomer, expect to offer a service while ignoring that? You need at least two years of community presence before anyone can really take your...
  4. PercyBerkeley

    заменёнка одежды

    It's possible, it is. For example, RedAge has a full-body costume, and it's just a jbib_(shirts) file.
  5. PercyBerkeley

    Проблема Здравствуйте, проблема с DLC..

    Many times it depends on your mp_m/f_freemode_01 configuration, they have a limit of 255 (or 155, I don't remember)
  6. PercyBerkeley

    Вопрос помогите решить: сохранение фото телефона в DB

    I hadn't taken that hypothetical case into account, thanks.
  7. PercyBerkeley

    Вопрос помогите решить: сохранение фото телефона в DB

    Why upload it to Imgur? What I did was use the same photos saved in \Grand Theft Auto V\RAGEMP\Screenshots. I just save a reference to the database so the photos upload to the gallery. If the reference isn't in the database, the image won't appear in the gallery, even if you place the image in...
  8. PercyBerkeley

    Вопрос setHealth, setArmour

    That's fine. If your only question is whether the client can use mp.players.local.setHealth(value) to force the player.health property to update on the server, the answer is yes. But no serious gamemode developer would maintain that default behavior, as it makes cheating easier. bye
  9. PercyBerkeley

    Вопрос setHealth, setArmour

    Yes, the client can 'sync' local health with itself. But this is how a cheater makes their server vulnerable. The professional developer overrides this automatic synchronization and delegates authority over health and damage exclusively to the server, using events like PlayerDamage or...
  10. PercyBerkeley

    Вопрос setHealth, setArmour

    If a player uses mp.players.local.setHealth(200) on the client, the server does NOT automatically update their player.health property to that value, because the client does not have the authority to tell the server what their "real" health should be. The server does. If the server has 100...
  11. PercyBerkeley

    Вопрос setHealth, setArmour

    igual los valores de da{p But it's not safe. RAGE's default damage is usually very high. Also, when you do it this way, there are sometimes accidents (falls, crashes, etc.) where you sometimes take very little damage, or sometimes a lot. If you want something solid, you should use...
  12. PercyBerkeley

    Вопрос setHealth, setArmour

    player.health = 200; player.armour = 100; Authority: Maximum authority. This is the player's "real" and trusted value. Effect: Changes values on the server. The server automatically syncs this new value to all clients (including the affected player). Purpose: You should always use the server to...
  13. PercyBerkeley

    Вопрос How can add cars and clothes to shops redage v3

    Not available for new users. You must have been joining the group for at least 8 months to unlock that option:rolleyes:
  14. PercyBerkeley

    [MAP] New Criminal Russia

    I think I've seen a very, VERY similar one at https://vag.gg/forums/fivem-ymap/ 😏😏😏😁
  15. PercyBerkeley

    снято с продажи

    I sell empanadas, but tomorrow I'll tell you what they're made of.
  16. PercyBerkeley

    axesarp (?) Map + DLCPacks #axesarp

    Those DLCs you're showing are 90% from redAge. Also, if you wanna successful server, you shouldn't even copy DLCs from other servers. I recommend you watch some Blender tutorials and learn how to make your own MLOs. Copying and "leaking" other people's content just shows you're jealous.
  17. PercyBerkeley

    Проблема Ошибка - "this game crashed due to unsupported game texture encoding format from custom mods"

    Убедитесь, что вы загрузили версию GTA «Legacy».
  18. PercyBerkeley

    Кастомная карта

    Sorry, it's 5 AM on this side of the world, still no sleep, and the translation isn't helping. You're using "mp.game.invoke," which is used in RAGE, but you're using "0x3dda37128dd1aca8," which is native to FiveM. But I assume you work in RAGE. Get the native ones from here...
  19. PercyBerkeley

    Кастомная карта

    Maybe this library is useful to you: https://github.com/anvaka/ngraph.path
  20. PercyBerkeley

    Проблема Проблемы с Gui.takeScreenshot

    Я не буду отрицать, что это заставило меня смеяться. У тебя есть право, я сам создал проблему:rolleyes: Это было так же, как: mp.events.add('smartphone:captureScreenshotClient', (photoID) => { try { const filename = `screenshot_${photoID}.jpg`...