Jump to content

(VÝPLATA) Nahrazení ESX notifikací OX_Lib notifikacema


Viper

Recommended Posts

Co je potřeba:
- OX_LIB (https://github.com/overextended/ox_lib)

 

Jako první se ujistěte zda máte v fxmanifest.lua v es_extended tento řádek v sekci shared_scripts

    '@ox_lib/init.lua',

 

Pokud máte, tak můžeme jít na výplaty.

 

Začneme tím, že půjdeme do es_extended --> server --> paycheck.lua

Zde budeme nahrazovat různé notifikace.


Toto nahradíme:

TriggerClientEvent('esx:showAdvancedNotification', player, TranslateCap('bank'), TranslateCap('received_paycheck'), TranslateCap('received_help', salary), 'CHAR_BANK_MAZE', 9)

Tímto:

TriggerClientEvent('ox_lib:notify', xPlayer.source, { title = 'Banka', icon= 'bank', position = 'top', description = 'Obdrželi jste výplatu ve výši ' ..salary..'$'})

 

 

Toto nahradíme:

                    TriggerClientEvent('esx:showAdvancedNotification', player, TranslateCap('bank'), TranslateCap('received_paycheck'),
                      TranslateCap('received_salary', salary), 'CHAR_BANK_MAZE', 9)

Tímto:

TriggerClientEvent('ox_lib:notify', xPlayer.source, { title = 'Banka', icon= 'bank', position = 'top', description = 'Obdrželi jste výplatu ve výši ' ..salary..'$'})

 

 

Toto nahradíme:

TriggerClientEvent('esx:showAdvancedNotification', player, TranslateCap('bank'), TranslateCap('received_paycheck'), TranslateCap('received_salary', salary),'CHAR_BANK_MAZE', 9)

Tímto:

TriggerClientEvent('ox_lib:notify', xPlayer.source, { title = 'Banka', icon= 'bank', position = 'top', description = 'Obdrželi jste výplatu ve výši ' ..salary..'$'})

 

 

Toto nahradíme:

TriggerClientEvent('esx:showAdvancedNotification', player, TranslateCap('bank'), TranslateCap('received_paycheck'), TranslateCap('received_salary', salary), 'CHAR_BANK_MAZE', 9)

Tímto:

TriggerClientEvent('ox_lib:notify', xPlayer.source, { title = 'Banka', icon= 'bank', position = 'top', description = 'Obdrželi jste výplatu ve výši ' ..salary..'$'})

 

Pokud by byl jakýkoliv problém, přikládám zde svůj starší paycheck.lua ze starší verze es_extended.

paycheck.lua

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...