Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/19/19 in Files

  1. Version 1.0.0

    277 downloads

    ~~PLEASE LEAVE FEEDBACK ON MULTIPLAYER FUNCTIONALITY~~ Hello! I'm MC, and I developed this blackjack mod from scratch. The goal was to create an interactive blackjack experience with full UI support. If you decide to give it a go, please make sure to leave some feedback as to whether it works properly or not. Thanks! Here's a demo of the mod in action: Features: When a player creates a table, they will automatically be assigned the HOUSE role for that table. The house player has the following UI options: - OPEN TABLE: If the table is currently closed, it will open the table. All tables are open by default. - CLOSE TABLE: The table will close for all players, except for the house player. This is used to prevent players from joining a private game, or a game in progress. It can also be used to temporarily close the table for an extended period of time. - RESHUFFLE: The tables deck is reshuffled, with all players hands being reset and the house having a new hand dealt. This reuses the same number of decks that was originally equipped with the table. - DESTROY TABLE: Destroys the table, deleting all resources associated with it. This will close any open UI for all players currently in the table, and the house player. - LEAVE GAME: This just leaves the table. If the house player leaves the table, the current state of the table is lost. Clicking on any player name will 'hit' the player. Additionally, clicking on a card on the table will flip the card over.Players will only see the house's hand and their own hand. They only have the option to leave the game. That's it! Any future adjustments to this mod will be based purely on the feedback received. Check me out on Twitch if you ever want to catch me occasionally coding RageMP mods live, support future mod development, or if you just want to come say hi: https://www.twitch.tv/mctheboss
    1 point
  2. Version 1.0.1

    572 downloads

    (EN) This script allow you to play emergency alert sound (2 sounds: tornado siren, alert siren), coming soon: amber alert with sound&pop-up (FR) Ce script vous permet de déclencher des sirènes d'alertes (sirène tornade, sirène d'alerte), à venir: alerte enlèvement avec son&popup ----- HOW TO INSTALL ----- 1) Unpack RAGEMP Alert v0.1 2) Drop the content of "client_packages" folder inside your client folder 3) Drop the content of "packages" folder inside your server folder 4) Add in your server index.js : require('./Alert/sAlert'); 5) Add in your client index.js : require('./Alert/cAlert'); 6) Do not forget to change link of mp.browsers.new in Alert/cAlert.js if needed ----- HOW TO USE ----- /alert tornado {repeat time} --> {repeat time} FROM 1 TO 9 TIMES Duration: EACH time: 9sec (min: 9sec, max: 81sec) /alert siren {repeat time} --> {repeat time} FROM 1 TO 9 Duration: START: 5sec / ACTIVE: 12sec (repeat from 1 to 9) / END: 13sec (min: 30sec, max: 126sec) /alert siren stop --> stop the siren immediatly if activated (duration: 13sec) ----- DEMO ----- Tornado Siren: Alert siren: Amber alert (coming soon):
    1 point
  3. Version 1.0.0

    1233 downloads

    Requirements You need to download & install these resources first: NativeUI Efficient Attachment Sync Currency API (after installing, define a currency named cash) Installing Put the files you downloaded in their respective places Set up some businesses and products (read below) All done Basically This script adds factories and buyers which sell and buy products, your job is to buy stuff from factories and sell them to buyers for profit. Commands /products: Accesses a vehicle's product inventory, you have to be at the back of the vehicle. /takeproduct: Takes a product from the ground/factory. /dropproduct: Drops a product from your hands to the ground/buyer. JSON Files Most of the changes are done by editing JSON files located in packages/courier/json/. Remember to validate your changes here: https://jsonlint.com/ config.json businessWorkInterval: Interval of the business work timer (used for factories to make product and buyers to sell product), default value is 60000. worldCleanerInterval: Interval of the world cleaner timer (used for removing dropped products), default value is 60000. droppedProductLife: Milliseconds a dropped product will stay for, default value is 600000. dropProductOnDeath: If true, dying will cause players to drop the product they're carrying, default value is true. dropProductOnDisconnect: If true, leaving the server will cause the players to drop the product they're carrying, default value is true. vehicles.json This file contains an object that keeps which vehicles are supported by this script in modelName: capacity format. (Vehicles List) { "burrito3": 6, // 6 products for burrito3 "rumpo": 6, // 6 products for rumpo "speedo": 4, // 4 products for speedo "youga": 4 // 4 products for youga } products.json This file contains the product information in object of objects format. A product has name, model, price, profit, businessTime, attachOffset and attachRotation properties. name: The product's visible name. model: Model name of the product, used for dropping and attaching. price: Price of the product. profit: Profit rate of the product. Price is multiplied by this value while selling products to a buyer. businessTime: Milliseconds it takes for a factory to create one of this product/for a buyer to sell one of this product. attachOffset: Attachment offset of the product model on player. attachRotation: Attachment rotation of the product model on player. // Example: Ammunition product "ammo": { "name": "Ammunition", "model": "gr_prop_gr_bulletscrate_01a", "price": 300, "profit": 1.2, "businessTime": 600000, "attachOffset": { "x": 0, "y": -0.18, "z": -0.18 }, "attachRotation": { "x": 0, "y": 0, "z": 0 } } businesses.json This file contains business information in array of objects format. A business has type, productType, initialStock, maxStock and position properties. type: Business type, only factory and buyer are available. productType: The product this business is interested in, only the values in products.json are available. initialStock: How much product this business has on server start. maxStock: Maximum product this business can have. position: Location of the business. // Example: Beer Factory & Buyer used in the video [ { "type": "factory", "productType": "beer", "initialStock": 100, "maxStock": 100, "position": { "x": 4.168992519378662, "y": 12.795921325683594, "z": 69.82928466796875 } }, { "type": "buyer", "productType": "beer", "initialStock": 0, "maxStock": 20, "position": { "x": 29.61789321899414, "y": 5.448328018188477, "z": 69.10714721679688 } } ] businessTypes.json This file contains business type information in object of objects format. You probably don't need to make any changes to this file, unless you want to add new business types. (which needs some scripting as well) A business type has label and blipSprite properties. label: Visible name, used for blip name and label. blipSprite: Blip sprite of the business type. (Blip Sprite List) // Example: Default business types { "factory": { "label": "Factory", "blipSprite": 615 }, "buyer": { "label": "Buyer", "blipSprite": 616 } } Extensions This script extends mp.Player and mp.Vehicle. Player Functions // Returns true if the player is carrying a product. player.isCarryingProduct(); // Returns the type of product the player is carrying, will be null if the player isn't carrying anything. player.getCarryingProduct(); // Makes the player start carrying a product. Type should be a valid product type and the player shouldn't be carrying a product, or it won't work. player.startCarryingProduct(type); // Makes the player stop carrying a product. player.stopCarryingProduct(); Vehicle Functions IMPORTANT: Vehicles with models that are in vehicles.json automatically get an inventory when entityCreated event is called, so you don't need to use setProductInventory for them. (Unless you want to be 100% sure they have it) // Sets the product inventory of a vehicle. newInventory must be an array created by the array constructor like "new Array(8)". vehicle.setProductInventory(newInventory); // Returns true if the vehicle has a product inventory. vehicle.hasProductInventory(); // Returns the product inventory of the vehicle, will be null if the vehicle doesn't have one. vehicle.getProductInventory(); // Adds a product to the vehicle product inventory, index must not have an item already and index must be within the bounds of product inventory array. Returns true if successful, false otherwise. vehicle.giveProduct(index, productType); // Returns the product at the specified index of vehicle product inventory, will be null if index doesn't have a product. vehicle.getProduct(index); // Removes the product at the specified index of vehicle product inventory. Returns true if successful, false otherwise. vehicle.removeProduct(index); Source code is available on GitHub in case you don't want to download: https://github.com/root-cause/ragemp-courier
    1 point
×
×
  • Create New...