Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/07/21 in all areas

  1. Version 1.0.2

    258 downloads

    Attach a player to bmx, cruiser or scorcher bike optional downloads: https://de.gta5-mods.com/vehicles/lowrider-bike-add-on-replace https://de.gta5-mods.com/vehicles/forever-28-inches-bike-add-on-extras Installing extract attachedBike folders to packages/attachedBike and client_packages/attachedBike if you allready have a index.js in your client_packages: add "require('attachedBike')" Usage Press "G" - Attach/Unattach player to/from bike Spawn a Cruiser: /bike Spawn a Bmx: /bike bmx Spawn a Scorcher: /bike scorcher optional mod bikes: /bike yj28 /bike lowriderb Notes GitHub: https://github.com/Yoegibby/ragemp-attachedBike
    2 points
  2. Version 1.0.0

    1171 downloads

    Use this script to implement hitmarkers to your script. As you can see at the screenshot, the health of the player will pop-up at the position of the player when you hit them. Use: Hits.add(amount, position); Where you want to spawn a hitmark with the number or amount you want. Enjoy!
    1 point
  3. /save [name (optional)] command to save your/your vehicle's position and heading/rotation to a file just like in SA-MP. You can find the saved positions inside savedpos.txt on the server folder. Code: const fs = require("fs"); const saveFile = "savedpos.txt"; mp.events.addCommand("save", (player, name = "No name") => { let pos = (player.vehicle) ? player.vehicle.position : player.position; let rot = (player.vehicle) ? player.vehicle.rotation : player.heading; fs.appendFile(saveFile, `Position: ${pos.x}, ${pos.y}, ${pos.z} | ${(player.vehicle) ? `Rotation: ${rot.x}, ${rot.y}, ${rot.z}` : `Heading: ${rot}`} | ${(player.vehicle) ? "InCar" : "OnFoot"} - ${name}\r\n`, (err) => { if (err) { player.notify(`~r~SavePos Error: ~w~${err.message}`); } else { player.notify(`~g~Position saved. ~w~(${name})`); } }); }); What the output looks like: Position: -422.9187316894531, 1133.0765380859375, 325.8547058105469 | Heading: 344.207763671875 | OnFoot - No name Position: -411.07977294921875, 1180.73681640625, 325.0368957519531 | Rotation: 1.4606590270996094, 0.7490195631980896, 75.47509765625 | InCar - No name Position: -1087.9407958984375, 4912.0634765625, 214.6710968017578 | Heading: 222.96522521972656 | OnFoot - Altruist Camp
    1 point
  4. Version 1.0.0

    646 downloads

    The amazing guy VerpiMoDz has made an amazing DLC to turn Legion Square into a festive Christmas scene. His original download from GTA5-Mods didn't work correctly for Rage. I have fixed it in this version and tested in 0.3.7 and 1.1 For the original mod check out: https://www.gta5-mods.com/maps/meetingpoint-remastered-christmas-normal-styled
    1 point
  5. Version 0.0.2

    708 downloads

    Just a proof of concept! No support available! Pawn implementation for RAGE.MP Loads Pawn scripts built for RAGE.MP and most SA-MP plugins. Source code: GitHub repository
    1 point
×
×
  • Create New...