This section explains how the Tebex purchase flow works from the player’s perspective, where instead of directly buying the yacht in-game, they must first complete the payment on Tebex and then use the provided transaction ID (TBX ID) to redeem it. It ensures secure validation of purchases and connects real-money transactions with in-game rewards seamlessly.
Enable Tebex Payment (qs-yacht)#
Next step is to enable the Tebex payment configuration inside the config. Find the Config.TebexPayment section and configure it like this:
Config.TebexPayment = {
enabled = true,
packageName = 'Yacht (VIP Yacht)', -- leave empty to allow all packages
enableBuyWithoutTebex = true, -- allow in-game money purchase without Tebex
bypassMaxOwnedCount = true, -- allow buying even if max yachts reached
-- If true, modifications are free after a Tebex purchase
-- If false, base yacht is free but upgrades must be paid
modificationsFreeWithTebex = true,
-- Limit yachts per Tebex transaction ID
maxYachtPerTransaction = 1
}













