Server Exports
getCompanyMoney
-- @param {dealershipId: string}: dealershipId is the key of the Stores table
local amount = exports["vms_vehicleshopv2"]:getCompanyMoney(dealershipId)addCompanyMoney
---@param {parkingId: string}: dealershipId is the key of the Stores table
---@param {amount: number}: the amount to be added to the dealership safe
---@param {addToTotalEarning: boolean}: Is the added money to be included in Total Earned
exports["vms_vehicleshopv2"]:addCompanyMoney(dealershipId, amount, addToTotalEarned)removeCompanyMoney
---@param {dealershipId: string}: dealershipId is the key of the Stores table
---@param {amount: number}: the amount to be removed from the dealership safe
exports["vms_vehicleshopv2"]:removeCompanyMoney(dealershipId, amount)sendAnnouncement
Last updated