Exports
This is a simple guide for how to use the JustCases exports for your custom actions
AddCoin
-- player: string|number - the online player server id
-- type: string - the coins type, can be gold or silver
-- amount: number - the amount of granting coins
exports.JustCases:AddCoin(player, type, amount)
-- Example
exports.JustCases:AddCoin(1, "gold", 99999999999)RemoveCoin
-- player: string|number - the online player server id
-- type: string - the coins type, can be gold or silver
-- amount: number - the amount of granting coins
exports.JustCases:RemoveCoin(player, type, amount)
-- Example
exports.JustCases:RemoveCoin(1, "gold", 99999999999)SetCoin
AddCase
CreateVoucher
Last updated