Security HUD
System Watchdog
×
Threads Scanned
-- / --
SYS. LOAD --%
AI SHIELD ACTIVE
DMCA Policy
×

📋 DMCA Compliance

This platform and community fully complies with the Digital Millennium Copyright Act (DMCA) and international copyright laws. We take all copyright protection seriously.

🛡️ Copyright Protection

If you believe a posted item belongs to you or violates your copyright, you may file a DMCA takedown request through our official channels. Upon receiving a valid claim, the infringing content will be removed within 24 hours.

What's new

Script FiveM Server Launcher leaks

cfxregame

Gold Elite
Joined
Nov 3, 2021
Messages
319
Reaction score
168,023
Points
361
Location
Newyork
Website
cfx.re

Launcher Preview​

68747470733a2f2f63646e2e646973636f72646170702e636f6d2f6174746163686d656e74732f3733313831353930393932383333373434382f3938343231333135313635363539353535372f756e6b6e6f776e2e706e67


Game Overlay (BETA)​

68747470733a2f2f63646e2e646973636f72646170702e636f6d2f6174746163686d656e74732f3737373935303835323435313133393730342f313032383831303531333831373238343630382f756e6b6e6f776e2e706e67


If you set useOverlay to true, you will be able to change server while connected to a server (pressing Alt+Shift+S), but be aware that his feature is not finished yet, so you might find some issues.

Setup​

Setup video

If you have troubles setting up or have a suggestion, please join my discord server (link below)

  • Make sure you have NodeJs installed in your machine
  • open your terminal and run npm i, make sure that you're in the root folder of the launcher
  • edit config.json with your preferences, in the svname you can type your server name, and in the ip field you will add the numbers and letters after the cfx.re/join/
  • to build the application, install electron builder using npm i --save-dev electron-builder, go to package.json move electron from dependencies to devDependencies and in the scripts part create this script "build": "electron-builder" add the code below after the scripts, open a new terminal and run the script you created using npm run build


package.json build settings​

HTML:
"build":{
    "appId": "SOUSA Launcher",
    "win":{
      "target": [
        "nsis"
      ],
      "icon":"icon.ico"
    },
    "nsis":{
      "oneClick":true,
      "installerIcon":"icon.ico",
      "uninstallerIcon":"icon.ico",
      "uninstallDisplayName": "SOUSA Launcher Uninstaller",
      "license":"license.md",
      "allowToChangeInstallationDirectory":false
    },
    "extraResources": [
      {
        "from": "node_modules/regedit/vbs",
        "to": "regedit/vbs",
        "filter": [
          "**/*"
        ]
      }
    ]
  },
 
Top