Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/06/20 in all areas

  1. Version 1.0

    1110 downloads

    🔶 Custom Pause Menu 🔶 Using the game file pausemenu.xml to remove unnecessary/faulty items from the pause menu (esc) in RAGE Multiplayer. Also fixed the radio volume control 😁 What was changed 🛠 Remote location 🗑 History, statistics, game, network, friends, gallery, store, rockstar editor Deleted sub-items 🗑 Voice chat, notifications, rockstar editor, save and launch Deleted options 🗑 ❌ (TODO) Key assignment -> everything related to GTA Online Audio -> everything related to GTA Online & Self Radio Video -> Subs Added items 🛠 Video -> Language Fixed options 🛠 Audio -> Music volume Audio -> Radiostation Requirements ⚙️ RAGE Multiplayer server version 1.1+ Installation 💾 Copy the client_packages folder to the server folder Good guy's ❤️ hromik for the help Despair for playing World Of Tanks README 📒 README (RU) LICENSES 📝 MIT License GITHUB 📰 CLICK ME, BOY!
    1 point
  2. Version 1.0.0

    932 downloads

    Car broke down on you? np. Github Repo & Readme Tested on 1.1 Usage: X - Ramp up/down LSHIFT - Pull Car/ Detach Car (align the ramp with the car then press to pull)
    1 point
  3. Version 1.0.0

    978 downloads

    Installing Put the files you downloaded in their respective places Add require('levels') to client_packages/index.js Open packages/levels/database.js and put your MySQL config All done API /* Player level and XP is accessed through currentLevel and currentXP shared data keys. You should not change the value of these shared data keys, just use them to get data and use the API to set data. */ player.data.currentLevel OR player.getVariable("currentLevel") // returns level of the player player.data.currentXP OR player.getVariable("currentXP") // returns XP of the player /* setLevel(newLevel) Sets the player's level to newLevel. (will also change player's XP to level XP) */ player.setLevel(newLevel) /* setXP(newXP) Sets the player's experience to newXP. (will update player's level) */ player.setXP(newXP) /* changeXP(xpAmount) Changes the player's experience by xpAmount. (will update player's level) */ player.changeXP(xpAmount) /* hasReachedMaxLevel() Returns whether the player has reached max level or not. */ player.hasReachedMaxLevel() /* saveLevelAndXP() Saves the player's level and XP data. Automatically called a player disconnects. */ player.saveLevelAndXP() Events These events are called on serverside when a player's level or XP changes. /* playerXPChange This event is called when a player's XP changes. */ mp.events.add("playerXPChange", (player, oldXP, newXP, difference) => { // code }); /* playerLevelChange This event is called when a player's level changes. */ mp.events.add("playerLevelChange", (player, oldLevel, newLevel) => { // code }); Example Script Here's a script that lets you change your level/XP and writes it to console: mp.events.addCommand("setlevel", (player, newLevel) => { newLevel = Number(newLevel); if (!isNaN(newLevel)) { player.setLevel(newLevel); } else { player.outputChatBox("SYNTAX: /setlevel [new level]"); } }); mp.events.addCommand("changexp", (player, amount) => { amount = Number(amount); if (!isNaN(amount)) { player.changeXP(amount); } else { player.outputChatBox("SYNTAX: /changexp [amount]"); } }); mp.events.addCommand("setxp", (player, amount) => { amount = Number(amount); if (!isNaN(amount)) { player.setXP(amount); } else { player.outputChatBox("SYNTAX: /setxp [new xp amount]"); } }); mp.events.add("playerXPChange", (player, oldXP, newXP, difference) => { console.log(`${player.name} ${difference < 0 ? "lost" : "gained"} some XP. Old: ${oldXP} - New: ${newXP} - Difference: ${difference}`); }); mp.events.add("playerLevelChange", (player, oldLevel, newLevel) => { console.log(`${player.name} had a level change. Old: ${oldLevel} - New: ${newLevel}`); }); Credits Unknown Modder - RP List IllusiveTea - Rank bar scaleform Notes This script will load and save level and XP data of players on its own but a function to save player data yourself is provided. Like said before, don't change the values of currentLevel and currentXP shared data keys. Maximum reachable level is 7999 but a player can earn XP until his rank bar is full, kinda reaching 8000. Use player.hasReachedMaxLevel() to detect if a player is level 7999 and his rank bar is full.
    1 point
  4. если у вас проблемы только на серверах редейджа то скорей всего проблема со стороны сервера/мода редейджа.
    1 point
  5. На рэдэйдже просто игроки дауны, такое ощущение будто из самп рп все перешли. Неадекваты, ДМщики
    1 point
  6. Не думаешь что это проблема конкретно того сервера на котором ты играешь? Зайди на другой. У меня в раге фпс выше чем в сингле
    1 point
×
×
  • Create New...