Jump to content

Search the Community

Showing results for tags 'Resource'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • RAGE Multiplayer
    • Announcements
    • Discussion
    • Suggestions
  • Scripting
    • Scripting
    • Resources
  • Community
    • Support
    • Servers
    • Media Gallery
  • Non-English
    • Русский - Russian
    • Français - French
    • Deutsch - German
    • Espanol - Spanish
    • Română - Romanian
    • Portuguesa - Portuguese
    • Polski - Polish

Categories

  • Scripts
  • Gamemodes
  • Libraries
  • Plugins
  • Maps
  • Tools

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Facebook


Youtube


Skype


Web


VK

Found 5 results

  1. 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
  2. Version 1.0.0

    142 downloads

    For more informations, please visit the tutorial thread! These are the files used in my tutorial, with the Flash Pro project and scaleform included, you can use these as a template and start making your own custom scaleforms. Requirements for client_packages folder: Better Clientside Commands by rootcause Rage V1.1+
  3. Salutare tuturor! (De inceput vreau sa va spun ca am postat aici, fiindca pe forumul nostru nu exista categoria RESURSE). Astazi vreau sa impartasesc cu voi un mic script la care am lucrat eu. Este vorba despre un sistem (clock), Ceas + Data, realizat doar dupa (Ora de vara a Europei de est). Ce poti face cu acest script? Il poti modifica si studia pentru a capata experienta. Ajuta la citirea mai rapida a orei, fara a mai fi nevoie sa iesiti din joc! Cum instalez acest script ? Descarci fisierul ! Folderul date il inserati in folderul client_packages din serverul vostru Inserati acest cod in fisierul index ( depinde cum aveti voi ) require('./client'); Inserati acest cod in fisierul client ( depinde cum aveti voi ) var clockBrowser = mp.browsers.new("package://date/date.html"); In final, puteti porni serverul vostru! 🗨️Poza Link pentru DESCARCARE ---> https://we.tl/t-Aocsl4UTlF
  4. Hello. About 3 months ago I begin programming for the first time ever and begun creating this gamemode. It is your typical RPG / Cops n Robbers template that might or might not contain bugs and whatnot. It should give any new developer some inspiration or examples on how to do certain things. I called it "Project-X" It contains: Vehicle / Watercraft / Aircraft shop Vehicle Saving / Spawning Very basic gun shop Clothing system that is very bad Money and Wanted system Trucker Job Criminal activities like robbing a store, putting items to vehicle inventory and bringing them to drop off Dynamic Tuning Shop Very basic faction system Timers / Progress bar system Custom Chat Basic Party and Mission system Basic Prison system Basic Housing system A lot of unfinished and unused features you can discover for yourself Thanks to rootcause for Vehicle Spawner resource. Videos: https://streamable.com/0tv8o https://streamable.com/proyj https://streamable.com/g809n https://streamable.com/uy2r8 https://streamable.com/bcmch https://streamable.com/fistv https://streamable.com/ygwnf Project uses MongoDB as Database with the name as "RageMP"! You can change this inside the Config class Download or go through files here: https://gitlab.com/DatUrsidae/project-x Cheers.
  5. Moin Leute, ich habe heute einen Rage MP Server aufgesetzt möchte aber mit C# und JS scripten. Deswegen habe ich mir folgendes Tutorial angeguckt: https://wiki.gtanet.work/index.php?title=Setting_Up_a_Development_Environment_using_Visual_Studio Dieses Tutorial habe ich 1 zu 1 befolgt und meine Dateien sehen genau so aus und sind genau so eingestellt wie im Tutorial beschrieben. Nun, der Server startet wie erwartet. Sobald ich connecte steht links unten "Download started!" dann schwarzer Bildschirm und die Fehlermeldung: Das Spiel crasht und schließt sich. Im Server.log steht einfach nur, dass ich disconnected bin. von weiteren Fehlermeldungen oder, dass irgendwas nicht richtig ausgeführt wurde steht nichts. Ich hab bisschen rumprobiert und im Internet gesucht aber ich bin nicht weiter gekommen. Vielleicht kann mir hier jemand helfen. Den Server habe ich wieder auf Standard wie im Tutorial zurückgesetzt. MfG SynconaX
×
×
  • Create New...