Skip to content

Simple karting tickets system for QBCore

Notifications You must be signed in to change notification settings

DafkeDD/mt-karting

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

mt-karting

Simple karting tickets system for QBCore

Preivew:

image

Installation:

Add to qb-core/server/events.lua:

RegisterNetEvent('QBCore:Server:RemoveMoney', function(acount, amount)
    local src = source
    local Player = QBCore.Functions.GetPlayer(src)
    if not Player then return end
    Player.Functions.RemoveMoney(acount, amount)
end)

RegisterNetEvent('QBCore:Server:AddMoney', function(acount, amount)
    local src = source
    local Player = QBCore.Functions.GetPlayer(src)
    if not Player then return end
    Player.Functions.AddMoney(acount, amount)
end)

Map credits link:

About

Simple karting tickets system for QBCore

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages