Exports

Client

OpenMenu - Opens the main chop shop menu

exports.lation_chopshop:OpenMenu()

OpenShop - Opens the shop specified

exports.lation_chopshop:OpenShop('tool') -- Opens tool shop
exports.lation_chopshop:OpenShop('swap') -- Opens swap shop

GetData - Returns a players data

local data = exports.lation_chopshop:GetData()
print(data.reputation) -- Peputation points
print(data.points) -- Mastery points
print(data.rep_since) -- Reputation earned since last mastery point
print(data.dismantle_lvl) -- Dismantling level
print(data.parts_lvl) -- Increased parts level
print(data.lockpick_lvl) -- Lockpicking level
print(data.payout_lvl) -- Increase vehicle sales level
print(data.total_chopped) -- Total vehicles chopped
print(data.total_parts) -- Total parts received
print(data.total_money) -- Total money earned

-- If only looking for a specific data type, can also be used like so:
local reputation = exports.lation_chopshop:GetData('reputation')
print(reputation)

IsChopping - Returns true or false if player is in a chopping mission

local isChopping = exports.lation_chopshop:IsChopping()
if isChopping then
    print('Player is currently in a chopping mission')
end

PoliceCount - Returns the number of police online

local count = exports.lation_chopshop:PoliceCount()
print('There are ' ..count.. ' police online!')

Server

GetData - Returns data for player ID passed

-- source: Player ID
local data = exports.lation_chopshop:GetData(source)
print(data.reputation) -- Peputation points
print(data.points) -- Mastery points
print(data.rep_since) -- Reputation earned since last mastery point
print(data.dismantle_lvl) -- Dismantling level
print(data.parts_lvl) -- Increased parts level
print(data.lockpick_lvl) -- Lockpicking level
print(data.payout_lvl) -- Increase vehicle sales level
print(data.total_chopped) -- Total vehicles chopped
print(data.total_parts) -- Total parts received
print(data.total_money) -- Total money earned

-- If only looking for a specific data type, can also be used like so:
local reputation = exports.lation_chopshop:GetData(source, 'reputation')
print(reputation)

AddRep - Increments total amount of reputation player has

-- source: Player ID
-- amount: How much reputation to add to player
exports.lation_chopshop:AddRep(source, amount)

AddVehicle - Increments total vehicles chopped count

-- source: Player ID
-- amount: How many to add to total_vehicles count
exports.lation_chopshop:AddVehicle(source, amount)

AddParts - Increments total parts received count

-- source: Player ID
-- amount: How many to add to total_parts count
exports.lation_chopshop:AddParts(source, amount)

AddSale - Increments total money earned count

-- source: Player ID
-- amount: How much to add to total_money count
exports.lation_chopshop:AddSale(source, amount)

Last updated