Configs

Config = {}

Config.CardsMin = 1
Config.CardsMax = 128
Config.Framework = 'qbcore'  -- 'esx' or 'qbcore'
Config.Database = 'oxmysql'  -- 'oxmysql' or 'mysql-async' or 'ghmattimysql'

Config.Lang = {
    NotFound = 'No player found with that name or ID!',
    Success = 'The card has been send sucesfully!',
}

RegisterNetEvent("tcg:notify")
AddEventHandler("tcg:notify", function(message)
    exports['mythic_notify']:DoHudText('inform', message)
end)

Last updated