Contract Killings

Unfortunately, there is a VAT on Tebex for most countries.
You may be able to use a VPN in a country without VAT to bypass this.

Oh that’s fine, just wanted to make sure. I’ll make the purchase later today. Thank you for the info.

sheesh a bit pricey, but looks so nice lol.

contract killings @$40

contact killing plus gang activity $40 also?

Please make the contract killing price cheaper. looks like a great resource.

Cant find a discord link on your tebex either

What was the remedy for that? I’m having the same issue. Kind of surprised it’s still a problem as you posted this a year ago. Please let me know what you did so it actually gives you cash.

As this resource is standalone, the functions for payments need to be replaced with something server-specific.
We have examples included and all you need to do is copy and paste them.

Original function

function PayPlayer(id, amount) --replace this with a payment function
	TriggerClientEvent('chatMessage', source, '', { 255, 255, 255 }, TextEntries["received_money"]..amount)
end

QBCore example

function PayPlayer(id, amount)
    local QBCore = exports['qb-core']:GetCoreObject()
    if QBCore ~= nil then
        local pData = QBCore.Functions.GetPlayer(id)
        pData.Functions.AddMoney('cash', amount, 'Contract Killings')
    end
end


There are many mission targets that will be brushed inside the walls, and ordinary players cannot find them at all…

Please contact our support team so we can help you fix this :slight_smile:
The target generation can be done multiple ways so every time it’s different.
The generation algorithm will try to place the target where it’s best but sometimes the information is unreliable.
We appreciate your patience, thank you.

Code locked?

The functions are protected, but it was designed for easy modification.
There’s a large configuration file and some code like the events are open.