Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/04/20 in Posts

  1. League 0.7a [work in progress] [Old github] [Discord] 0.7a unstable version Gamemode: league07a.zip Arenas (count: 17): arenas.zip New life of gamemode, new features: Rounds, Configurable damage, (also many options could be configured by conf.json) Statistic, new UI, Permissions, Scoreboard (Tab), Game panel (F2), Deathlog, Damage huds, Info panel, Custom chat, Winner Effect, Kill/Death Effect, Voting system, Weapon switching (by hotkeys 1, 2, 3) Admin commands: /start, /arena, /a <id|name> start arena /stop, /s - stop round /add <id|name> add a player to the round /remove <id|name> remove a player from the round /pause - pause round /unpause - unpause round /swap - Change team places (Team spawn points) Player commands: /vote <id|code> vote for arena /kill kill yourself /spec <id|name> spectate for a player Auth commands: /rcon log as root Its still alpha because I didnt test it completely, so if you find a bug push it to issues here or to discord: https://discord.gg/5RBfSc3hvE 0.7a changelog 0.7a video: 0.6a videos: 0.5.0 Screenshots: 0.5.0 Videos: 0.4.0 Screenshots: Previous versions screenshots: Ver. 0.5.0 download league 0.5.0-alpha from github Gamemode discord for any questions. Changelog (previous versions): Current changelog:
    2 points
  2. Inside your server folder, open config.json and add the following line "allow-cef-debugging": true Now head to your registry (Windows Key + R ) and type regedit and hit enter. Head to the following path: Once you're there, right click and Go New > String Value and put "launch.cefPort" as the name and Hit Enter, then right click and hit Modify and set the data to the port you'd like to use (9222 for example) and it should look the same as below Now head to your browser using the following: http://localhost:9222/ or whatever port you had entered to enable it. You'll need to quit Rage and open it back up if you enabled this while in game, and make sure you restart your server when you change the setting. Credits to @kemperrr as I used his post on Discord to make this up.
    1 point
  3. Love the progress you've continued to do with this gamemode, I might try this out myself later and see how it goes.
    1 point
  4. Better way is to: npm i -g create-react-app create-react-app projectname Than doin strange things for ez projects lol
    1 point
  5. function showSpeed() { const player = mp.players.local; if (player.isSittingInAnyVehicle(true)) { let velocity = player.vehicle.getVelocity(); let speed = Math.sqrt(velocity.x * velocity.x + velocity.y * velocity.y + velocity.z * velocity.z); speed = Math.round(speed) mp.game.graphics.drawText(`Speed: ${speed}`, [0.825, 0.875], { font: 6, color: [255, 255, 255, 255], scale: [0.9, 0.9], outline: true }); } } mp.events.add('render', () => { showSpeed(); });
    1 point
  6. Hello guys. Im new at rageMP. I created a server but dont know nothing... How to install mysql, how to write commands for admin, and all that stuff. Can someone help?
    0 points
×
×
  • Create New...