Using Exclusive Content
Exclusive.Retrieval = {
use = true, -- SET USE TO TRUE
type = 'COINS',
}Editable.ExclusivePayCheck = function(src, vehData)
--Apply the code check if user have exclusive currency required for vehicle price. Example
local coins = 2000
if coins >= vehData.price then
return true
end
return false
-- For help contact on discord discord.gg/MF9uVuWrQn
end
Editable.ExclusivePayForVehicle = function(src, vehData)
local coins = 2000
local receivedPay = false
if coins >= vehData.price then
--removeCoinsFunc(vehData.price)
receivedPay = true
else
receivedPay = false
end
return receivedPay
-- For help contact on discord discord.gg/MF9uVuWrQn
endLast updated
