Search the Community
Showing results for tags 'custom'.
-
Hi guys im not hyping anything, just inviting players who are genuinely looking for a good RP community. My friend runs a GTA V RP server where the owners genuinely listen to players and take feedback seriously. It’s not one of those servers where suggestions go ignored or staff do whatever they want, the goal is to build a good community together. The city already has life: You’ll find many organizations running their own stories, people working different jobs and dealerships packed with cars you don’t see everywhere. Custom clothes, detailed MLOs and scripts are all built to support roleplay, not rush it. A lot of the server is shaped by player interest and feedback, mixed with dev ideas to keep things fresh and balanced. The population is still growing, which honestly makes this the best time to join. You get space to settle in, build your character and actually matter in the city instead of feeling late or irrelevant. If you’re looking for a chill, serious RP community and a server that’s trying to do things the right way, you’re welcome to join. 🔗 Discord Join Link: https://discord.gg/T85Jx3ttad 🎟️ Promo Code (if u guys join use my promocode btw): Cracknot No hype. No pressure. Just an open invite to a server that’s trying to do RP the right way. See you in the city 🤝🌆 Images from city: (check discord server for more sneak peeks btw) https://imgur.com/a/MPk6Tif https://imgur.com/a/vLxMD83 https://imgur.com/a/R2Zcour https://imgur.com/a/HxoCpwD https://imgur.com/a/At87Ph6 https://imgur.com/a/s43kGIV https://imgur.com/a/rQEF05M https://imgur.com/a/GyeCEkb https://imgur.com/a/jQLej8Z https://imgur.com/a/oVKfKpk
-
- rp
- RoleplayServer
-
(and 5 more)
Tagged with:
-
I am looking for a developer for my first RageMP server, someone experienced in coding custom scripts and able to create them. It is very important to me personally to set up the server professionally and make it a big success. About me/us: - Former server owner of a FiveM server with 200+ players - Knowledge of Python and understanding of HTML, basic knowledge of Lua - Professional graphic designer (animated logos, UI, clothing, weapon skins, etc.) - Co-founder of one of the most trusted German services for weapon skins and custom Discord bots - Partnered with the largest German gaming brand: Nyfter What we are looking for: -1-2 professional developers for custom scripts (a team is preferred) - At least 18 years old - Able to follow requests and implement them - Potential long-term work based on trust - Languages: German or English - Developers who take their work seriously What we offer: - A friendly, small team that has known each other for 3+ years
-
Hallo ich habe mich anfangs mit der Thematik Custom Skys für Grand RP beschäftigt. Erstmals hatte ich mir selbst einen anfertigen lassen und nach ein paar russischen Videos konnte ich dann auch schon meinen eigenen Sky entwerfen und jetzt auch schon benutzen. Nun habe ich mich an ein Custom Outfit gewagt. Sprich ich habe über OpenIV den Ordner „mpchristmas2017“ geöffnet und in den files dann die beiden Files gefunden einmal das Oberteil in der 3D ansicht und einmal das Raster als PNG zum bearbeiten. Bilder kann ich leider gerade nicht einfügen da ich diesen Beitrag aufm Handy schreibe. Fakt ist sobald ich die Dlc.rpf datei von dem Ordner Mpchristmas2017 mit den neuen PNG also meinem custom outfit versehe bekomme ich bei spielstart eine Fehlermeldung, dass meine Spieldatein überprüft gehören. Kann mir hier bitte einer mit Erfahrung in diesem Bereich auf Discord weiterhelfen! Meine ID wäre die ᴀʀᴛᴇᴍɪsシ#9796 Ich würde mich wirklich sehr freuen wenn mir hier jemand helfen könnte! ———————————————————— Hello, I initially dealt with the topic of custom skys for Grand RP. For the first time I had one made for myself and after a few Russian videos I was able to design my own Sky and now I can already use it. Now I've ventured into a custom outfit. In other words, I opened the "mpchristmas2017" folder via OpenIV and then found the two files in the files: the upper part in the 3D view and the grid as a PNG for editing. Unfortunately, I can't add pictures right now because I'm writing this post on my cell phone. The fact is, as soon as I add the Dlc.rpf file from the Mpchristmas2017 folder with the new PNG, i.e. my custom outfit, I get an error message at the start of the game that my game files need to be checked. Can someone please help me with experience in this area on Discord! My ID would be this ᴀʀᴛᴇᴍɪsシ#9796 I would be really happy if someone could help me here!
-
Version 1.0.0
579 downloads
Overview This is a highly customizable and responsive interact menu script that does not require any CEF magic. All of the components of this menu come from mp.game.graphics. There is an example.js included in the repository files that set up a menu manager along with two menus that you can switch between. Installation Place the interact folder inside your client_packages folder. Paste the below code into your client_packages/index.js file. require('./interact/example'); Controls These can be easily customized through RAGE, but if you are trying the example, hold the B key while using your mouse to navigate and press left mouse button to confirm selection. API Usage Getting required classes const Menu = require('./interact/menu'); const MenuManager = require('./interact/manager'); Setting up a menu /** * @param {Number} [maxItems] Max amount of items that will show when the menu is open. * @param {Number} [itemScale] Size of each selectable item in the menu. * @param {Number} [wheelScale] Size of texture in the center of the menu. * @param {Number} [radius] Size of each selectable item in the menu. * @param {RGBA} [color] Default color for all items (unless altered for each individual item added) * @param {RGBA} [hoverColor] Default hover color for all items (unless altered for each individual item added) * @param {Array} [wheelTexture] [textureDict, textureName] of the menu's center. * @param {Array} [backgroundTexture] [textureDict, textureName] of the optional background for items. */ const sampleMenu = new Menu(maxItems, itemScale, wheelScale, radius, color, hoverColor, wheelTexture, backgroundTexture); Adding items to the menu /** * @param {String} name Item identifier. * @param {String} textureDict Item icon texture dictionary. * @param {String} textureName Item icon texture name. * @param {Boolean} [background] Whether the item should have the optional background (recommended for icons without backgrounds). * @param {Boolean} [closeMenu] Whether the menu should be closed on item select. * @param {RGBA} [color] Color for the item in the menu (default takes color from the menu). * @param {RGBA} [hoverColor] Hover color for the item in the menu (default takes hover color from the menu). * @param {Function} callback Callback to execute on item select. */ sampleMenu.add(name, textureDict, textureName, background, closeMenu, color, hoverColor, () => { mp.game.graphics.notify('Button 1'); }); Setting up the menu manager /** * @param {Menu} mainMenu The menu that opens when manager is displayed. */ const menuManager = new MenuManager(mainMenu); Using the menu manager /** * @param {Menu} menu The menu to switch to (use this in callback if you want complex menus). */ menuManager.switch(menu); /** * @param {Boolean} toggle Toggle menu visibility. */ menuManager.display(toggle); // Running this executes the callback associated with the selected item. menuManager.select(); // This must be placed in the clientside render event menuManager.render() Github Link- 3 reviews
-
- 4
-
-
- custom
- custommenu
-
(and 8 more)
Tagged with:
-
Version 1.0.0
1610 downloads
What is this? This is a @MrPancakers's custom chat with scroll bar with a simple addition - it adds option to use arrow up, down key to move thru your chat history. Just like in SAMP! How to install? Extract everything into client_packages folder and add the chat script into your index.js. require("/chat/index.js"); Note This may include some bugs and I do not provide "tech support" for it This was created in version 0.3.7 Credits @MrPancakers (https://rage.mp/profile/5511-mrpancakers/) -
Hello everyone. I found the minimap.ytd file but don't know how to change the blips in it. I need to put my own blips instead of these 4 blips. I need the bmw, mercedes, ferrari and audi logos. How do I change them and add my own. How to add them to the rage mp server. (Hopefully just via dlc.rpf)
-
Hey guys, I want to create my own "decals" for a RAGE MP Server and can't find the Data for them. Does anyone know how I can create my own "decals"? https://wiki.rage.mp/index.php?title=Male_Decals
-
So i started to Skin Vehicles for Arma 3, and now since GTA V RP is out i want to skin Cars for GTA V as well. What could i need: The knowledge how to find the Texture of ANY vehicle, since i want to possibly skin them all. What programms do i need? (Im using Photoshop and Illustrator for Arma 3) Thanks if anyone knows the answer. ^^
-
Как реализовывать кастомный чат? У меня есть такое представление по его реализации: Скрыть дефолтный чат, запретить открывать его, с помощью cef вывести свою модель чата и в нее помещать сообщения. Если у меня правильное представление, то подскажите, как текст сообщения, присланный с сервера через SendChatMessage и т.п. функции, вставить в свою модель чата? Если же у меня не верное представление, то как тогда его реализовывать?
-
Is it possible to change car textures in RageMP via scripting or any other way?
-
- question
- custom cars
-
(and 3 more)
Tagged with:
