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

Недавнее содержимое от PercyBerkeley

  1. PercyBerkeley

    Вопрос Разработка кастомной одежды

    I had a similar problem a while ago and the problem was in mp_m_freemode_01.ymt, it had a limit that didn't let me put more than 10 bag models.
  2. PercyBerkeley

    Вопрос Свечение в окнах ночью

    In Sollumz, you must use the emissivenight shader and place the illuminated texture there.
  3. PercyBerkeley

    DLC The Dirty Jackpot 1

    The idea behind this MLO was to create a space with two faces. We wanted you to be able to do your laundry peacefully on the street front, while at the same time experiencing the vibrant and exciting atmosphere of a private casino hidden in the back. It's the perfect setting for those seeking a...
  4. PercyBerkeley

    Вопрос Шляпы и их лимит (255 ID)

    It only takes a minute
  5. PercyBerkeley

    Вопрос Шляпы и их лимит (255 ID)

    If I could do it, you can too, keep at it! Use AI, read forums or the documentation, watch YouTube tutorials, or pay someone to do it for you.
  6. PercyBerkeley

    Вопрос Шляпы и их лимит (255 ID)

    using grzyClothTool
  7. PercyBerkeley

    Проблема Отображение видео через

    I was curious why it wasn't working, so I revisited the code in this repository I'd saved for a while: https://github.com/Merumond/ragemp-browser3d/tree/main They use this: this.instance = mp.browsers.newHeadless(url, width, height); This is an invisible browser that renders as a 3D texture...
  8. PercyBerkeley

    Проблема Отображение видео через

    That's weird shit, although after searching online, it's not that weird. https://rage.mp/forums/topic/25664-i-need-help-for-place-videos-in-ragemp/ If you want, find the file and send me the contents, and then we can see if that's the problem or something else. Try searching in...
  9. PercyBerkeley

    Проблема Отображение видео через

    Something is failing somewhere, try this to debug const renderGang = (index) => { const gang = gangs[index]; if (!gang) return; gangHeaderTitle.textContent = gang.title; gangName.textContent = gang.name; gangDescription.innerHTML = String(gang.description ||...
  10. PercyBerkeley

    Проблема Requesting private assistance on replacing a whole map/minimap. Paying upfront :)

    Take a look at this post and its comments; it might have the solution to your problem: https://ragemp.pro/threads/kastomnaja-karta.15769/
  11. PercyBerkeley

    Проблема Отображение видео через

    The question is: does your renderGang function dynamically update the video's source? Because if it doesn't, it will always display apb.webm and not the current band's video. In this file, you still have it set as .mp4 document.addEventListener("DOMContentLoaded", () => { const video =...
  12. PercyBerkeley

    Проблема Отображение видео через

    Дважды проверьте правильность указания пути к видео в теге. Путь в атрибуте src должен быть относительным к вашему HTML-файлу. Если ваш HTML-файл находится в папке gangchoice, он будет выглядеть так: <video autoplay loop muted> <source src="video/banda1.webm" type="video/webm"> </video>...
  13. PercyBerkeley

    Проблема Отображение видео через

    Сначала необходимо преобразовать видео в формат '.webm'.
  14. PercyBerkeley

    Проблема Отображение видео через

    <video autoplay loop muted> <source src="banda1.webm" type="video/webm"> </video>