Hail a passing driver by voice for a taxi-style ride. The addon detects nearby vehicles, negotiates with the driver, calculates a fare, and optionally drives you to a waypoint automatically.
NPCLiftConfig.enabled#| Type | Default |
|---|---|
boolean | true |
Enable or disable the NPC lift addon entirely.
NPCLiftConfig.debug#| Type | Default |
|---|---|
boolean | Config.AddonDebug |
Enable debug logging. Follows the global AddonDebug setting by default.
NPCLiftConfig.detectionRadius#| Type | Default |
|---|---|
number | 10.0 |
Radius in meters the addon scans for eligible vehicles when the player speaks a hail command.
NPCLiftConfig.interactionRadius#| Type | Default |
|---|---|
number | 10.0 |
Maximum distance in meters the player must be from the vehicle to initiate the ride.
NPCLiftConfig.acceptChance#| Type | Default |
|---|---|
number | 60 |
Percentage chance (0–100) that an NPC driver accepts the ride request.
NPCLiftConfig.fare#| Field | Type | Default | Description |
|---|---|---|---|
enabled | boolean | true | Charge the player a fare at the end of the ride |
chance | number | 75 | Percentage chance a fare is requested (0 = always free, 100 = always charged) |
minAmount | number | 100 | Minimum fare amount in dollars |
maxAmount | number | 350 | Maximum fare amount in dollars |
moneyType | string | 'cash' | Payment type — 'cash', 'bank', or 'crypto' |
fareTimeout | number | 15000 | Time in ms the player has to confirm or decline before auto-cancel |
NPCLiftConfig.fare = { enabled = true, chance = 75, minAmount = 100, maxAmount = 350, moneyType = 'cash', fareTimeout = 15000, }
Last updated 14 days ago