1
0
Fork 0
forked from Simnation/Main
Propfix Nordi
This commit is contained in:
Max 2025-06-12 15:29:08 +02:00
parent 42fb95d4ba
commit 2c6da53b8e
152 changed files with 5374 additions and 540 deletions

View file

@ -27,7 +27,7 @@ AddEventHandler('roadphone:bank:transfer', function(number, amount)
apptitle = 'APP_BANK_NAME',
title = 'APP_BANK_NUMBER_NOT_FOUND_TITLE',
message = 'APP_BANK_NUMBER_NOT_FOUND_MESSAGE',
img = "/public/img/Apps/bank.png"
img = "/public/img/Apps/light_mode/bank.webp"
})
return;
end
@ -39,7 +39,7 @@ AddEventHandler('roadphone:bank:transfer', function(number, amount)
TriggerClientEvent("roadphone:sendNotification", src, {
apptitle = 'APP_BANK_NAME',
title = 'APP_BANK_SEND_MONEY_TO_YOURSELF_TITLE',
img = "/public/img/Apps/bank.png"
img = "/public/img/Apps/light_mode/bank.webp"
})
return;
end
@ -57,7 +57,7 @@ AddEventHandler('roadphone:bank:transfer', function(number, amount)
TriggerClientEvent("roadphone:sendNotification", src, {
apptitle = 'APP_BANK_NAME',
title = 'APP_BANK_INVALID_INPUT',
img = "/public/img/Apps/bank.png"
img = "/public/img/Apps/light_mode/bank.webp"
})
return;
end
@ -67,7 +67,7 @@ AddEventHandler('roadphone:bank:transfer', function(number, amount)
apptitle = 'APP_BANK_NAME',
title = 'APP_BANK_NOT_ENOUGH_MONEY',
message = 'APP_BANK_NOT_ENOUGH_MONEY_MESSAGE',
img = "/public/img/Apps/bank.png"
img = "/public/img/Apps/light_mode/bank.webp"
})
return;
end
@ -91,14 +91,14 @@ AddEventHandler('roadphone:bank:transfer', function(number, amount)
apptitle = 'APP_BANK_NAME',
title = 'APP_BANK_MONEY_SENT',
message = Lang:t('info.bank_app_sent_money_text', { value = amount}),
img = "/public/img/Apps/bank.png"
img = "/public/img/Apps/light_mode/bank.webp"
})
TriggerClientEvent("roadphone:sendNotification", targetplayer.PlayerData.source, {
apptitle = 'APP_BANK_NAME',
title = 'APP_BANK_MONEY_RECEIVED',
message = Lang:t('info.bank_app_received_money_text', { value = QBCore.Shared.Round(endamount, 2)}),
img = "/public/img/Apps/bank.png"
img = "/public/img/Apps/light_mode/bank.webp"
})
if amount >= Cfg.MinimumBankTransfer then

View file

@ -124,14 +124,14 @@ if not Config.bcsCompanyManager then
TriggerClientEvent('roadphone:sendNotification', src, {
apptitle = 'APP_BILLING_NAME',
title = Lang:t('info.info.billing_paid') .. data[1].amount,
img = '/public/img/Apps/billing.png'
img = '/public/img/Apps/light_mode/billing.webp'
})
if SenderPly then
TriggerClientEvent('roadphone:sendNotification', SenderPly.PlayerData.source, {
apptitle = 'APP_BILLING_NAME',
title = Lang:t('info.info.billing_paid') .. data[1].amount,
img = '/public/img/Apps/billing.png'
img = '/public/img/Apps/light_mode/billing.webp'
})
end
end)
@ -166,12 +166,12 @@ elseif Config.bcsCompanyManager then
TriggerClientEvent('roadphone:sendNotification', src, {
apptitle = 'APP_BILLING_NAME',
title = Lang:t('info.billing_paid') .. amount,
img = '/public/img/Apps/billing.png'
img = '/public/img/Apps/light_mode/billing.webp'
})
TriggerClientEvent('roadphone:sendNotification', xTarget.PlayerData.source, {
apptitle = 'APP_BILLING_NAME',
title = Lang:t('info.billing_paid') .. amount,
img = '/public/img/Apps/billing.png'
img = '/public/img/Apps/light_mode/billing.webp'
})
TriggerClientEvent('roadphone:updatebilling', xPlayer.PlayerData.source)
@ -184,7 +184,7 @@ elseif Config.bcsCompanyManager then
TriggerClientEvent('roadphone:sendNotification', src, {
apptitle = 'APP_BILLING_NAME',
title = Lang:t('info.billing_nomoney') .. amount,
img = '/public/img/Apps/billing.png'
img = '/public/img/Apps/light_mode/billing.webp'
})
end
@ -194,7 +194,7 @@ elseif Config.bcsCompanyManager then
TriggerClientEvent('roadphone:sendNotification', src, {
apptitle = 'APP_BILLING_NAME',
title = Lang:t('info.billing_nomoney') .. amount,
img = '/public/img/Apps/billing.png'
img = '/public/img/Apps/light_mode/billing.webp'
})
end

View file

@ -536,7 +536,7 @@ AddEventHandler("roadphone:server:blocknumber", function(number)
TriggerClientEvent("roadphone:sendNotification", _source, {
apptitle = 'APP_CALL_NAME',
title = _U('call_already_blocked'),
img = "/public/img/Apps/call.png"
img = "/public/img/Apps/light_mode/call.webp"
})
return
end

View file

@ -80,7 +80,7 @@ QBCore.Functions.CreateCallback('roadphone:valet:checkMoney', function(source, c
TriggerClientEvent("roadphone:sendNotification", source, {
apptitle = "APP_VALET_NAME",
title = "APP_VALET_CAR_ONTHEWAY",
img = "/public/img/Apps/valet.jpg"
img = "/public/img/Apps/light_mode/valet.webp"
})
discordLog("9807270", "Valet", xPlayer.PlayerData.name .. ' ' .. Lang:t('info.valet_car_delivered_2', { value = Config.ValetDeliveryPrice }), 'RoadPhone - Valet', nil, Cfg.ValetWebhook)
@ -90,7 +90,7 @@ QBCore.Functions.CreateCallback('roadphone:valet:checkMoney', function(source, c
TriggerClientEvent("roadphone:sendNotification", source, {
apptitle = "APP_VALET_NAME",
title = "APP_VALET_NOTENOUGHMONEY",
img = "/public/img/Apps/valet.jpg"
img = "/public/img/Apps/light_mode/valet.webp"
})
cb(false)