35 lines
1.2 KiB
Lua
35 lines
1.2 KiB
Lua
-- ak4y dev.
|
|
|
|
-- IF YOU HAVE ANY PROBLEM OR DO YOU NEED HELP PLS COME TO MY DISCORD SERVER AND CREATE A TICKET
|
|
-- IF YOU DONT HAVE ANY PROBLEM YET AGAIN COME TO MY DISCORD :)
|
|
-- https://discord.gg/kWwM3Bx
|
|
|
|
AK4Y = {}
|
|
|
|
AK4Y.Framework = "qb" -- qb / oldqb | qb = export system | oldqb = triggerevent system
|
|
AK4Y.Mysql = "oxmysql" -- Check fxmanifest.lua when you change it! | ghmattimysql / oxmysql / mysql-async
|
|
|
|
AK4Y.OpenCommandMenu = "diceMenu"
|
|
|
|
AK4Y.DiceOptions = {
|
|
{ optionId = 1, optionLabel = "1 Runda", optionRound = 1 },
|
|
{ optionId = 2, optionLabel = "2 Runde", optionRound = 2 },
|
|
{ optionId = 3, optionLabel = "3 Runde", optionRound = 3 },
|
|
{ optionId = 4, optionLabel = "4 Runde", optionRound = 4 },
|
|
{ optionId = 5, optionLabel = "5 Runde", optionRound = 5 },
|
|
}
|
|
|
|
AK4Y.Translate = {
|
|
plyWalkAway = "Jucatorul a renuntat",
|
|
noNearby = "Nu este nimeni in apropiere",
|
|
plyNotAvailable = "Jucatorul nu vrea sa joace",
|
|
noMoneyOneSide = "O persoana nu are bani",
|
|
ydntHvMoney = "Nu ai bani ca sa creezi un joc",
|
|
|
|
}
|
|
|
|
AK4Y.Notify = function(text, typ, where)
|
|
if where == "client" then
|
|
QBCore.Functions.Notify(text, typ)
|
|
end
|
|
end |