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
- Ensure you have the following required resources installed:
- Any of the inventory scripts defined in Configuration
- ox_lib (opens in a new tab)
- oxmysql (opens in a new tab)
- ox_target (opens in a new tab)
- bl_ui (opens in a new tab) (Replaceable with other mini-games)
- Use any supported framework: OX, QBOX, ESX, QB, or Standalone.
Step 2: Download and Extract
- Download & extract the
evolent_boostingresource from Cfx.re (opens in a new tab) and place it inside yourresourcesfolder.
Step 3: Execute SQL Files
- Execute all
.sqlfiles found in thesqlfolder 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.luato fit your server's needs (framework, locations, rewards, etc.). Visit Configuration for a full breakdown.
Step 6: Starting the Script
- Add
evolent_boostingto your server's resource list and start the script. Ensure it is started AFTER all dependencies.
ensure ox_lib
ensure oxmysql
ensure evolent_boosting