Boosting

Evolent Boosting

Tired of the same old point A to B boosts? Yeah, us too. That’s why we built a next-level boosting system.
Our system is packed with variety, real progression, and features that actually make sense.

Installation

Step 1: Install Dependencies

Step 2: Download and Extract

Step 3: Execute SQL Files

  • Execute all .sql files found in the sql folder into your server's database. This sets up the necessary tables for progression and contracts.

Step 4: Add Items to ox_inventory

  • Add the following entries to your ox_inventory/data/items.lua. These items are used to access the hacking minigame and the boosting contract UI, respectively.
["ghostlink"] = {
    label = "GhostLink",
    weight = 5000,
    stack = true,
    close = true,
    client = {
        event = 'evolent_boosting:startHacking'
    }
},
-- add this only if you won't use cmd
["boostingtablet"] = {
    label = "Boosting Tablet",
    weight = 5000,
    stack = true,
    close = true,
    client = {
        export = 'evolent_boosting.openTablet'
    }
},

Step 5: Configuration

  • Configure the config.lua to fit your server's needs (framework, locations, rewards, etc.). Visit Configuration for a full breakdown.

Step 6: Starting the Script

  • Add evolent_boosting to your server's resource list and start the script. Ensure it is started AFTER all dependencies.
ensure ox_lib
ensure oxmysql
ensure evolent_boosting