Advertisement
Guest User

Untitled

a guest
Jun 26th, 2023
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. Config = {}
  2.  
  3. -- _____ _____ _ _ ______ _____ _____ _ _______ ___ _____ _____ _____ _ _
  4. -- / __ \ _ | \ | || ___|_ _| __ \ | | | ___ \/ _ \_ _|_ _| _ | \ | |
  5. -- | / \/ | | | \| || |_ | | | | \/ | | | |_/ / /_\ \| | | | | | | | \| |
  6. -- | | | | | | . ` || _| | | | | __| | | | /| _ || | | | | | | | . ` |
  7. -- | \__/\ \_/ / |\ || | _| |_| |_\ \ |_| | |\ \| | | || | _| |_\ \_/ / |\ |
  8. -- \____/\___/\_| \_/\_| \___/ \____/\___/\_| \_\_| |_/\_/ \___/ \___/\_| \_/
  9.  
  10. Config.Framework = 'esx' -- esx, qbcore
  11. Config.FrameworkExport = 'esx:getSharedObject' -- esx:getSharedObject, qb-core
  12. Config.UseNewESXVersion = false -- if you use the newest ESX version go to the fxmanifest.lua line 10 an remove the "--"
  13.  
  14. Config.UI = { -- Everything related to Interface texts
  15. servername = 'MYSERVER',
  16.  
  17. language = {
  18. maptitle = 'YOUR MAP',
  19. mapinfo = 'See the <strong>MAP</strong> with all the interesting <strong>places.</strong>',
  20. keytitle = 'IMPORTANT KEYS',
  21. keyinfo = 'Discover the most important <strong>keys</strong> and <strong>commands.</strong>',
  22. reporttitle = 'SEND REPORT',
  23. reportinfo = 'Do you have <strong>questions</strong>, or do you want to report a <strong>bug?</strong>',
  24. settingstitle = 'SETTINGS',
  25. settingsinfo = 'Adjust everything you want from <strong>FiveM</strong>',
  26.  
  27.  
  28. charinfo = 'Character Information',
  29. bottomText ='If you have any <strong>questions</strong> about anything on the server, you can open a <strong>Ticket</strong> on Discord and it will be a pleasure to <strong>help you.</strong>'
  30. },
  31.  
  32. commands = { -- You can add as many as you want, just by copying and pasting the previous one.
  33. {
  34. command = 'help',
  35. description = 'Show Help Menu'
  36. },
  37. {
  38. command = 'revive',
  39. description = 'Revives a player'
  40. }
  41. },
  42.  
  43. keys = { -- You can add as many as you want, just by copying and pasting the previous one.
  44. {
  45. key = 'F5',
  46. description = 'Open Menu (Default)'
  47. }
  48. }
  49. }
  50.  
  51. -- REPORT BUTTON: Here you will add the export of the Report System you use to be opened when the button is clicked. You can also modify the button to open whatever you want!
  52.  
  53. Config.ExportReport = function()
  54. exports['kdshow']:getStats()
  55. end
  56.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement