Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.41 KB | None | 0 0
  1. exec permissions.cfg
  2. set es_enableCustomData 1
  3.  
  4. # Only change the IP if you're using a server with multiple network interfaces, otherwise change the port only.
  5. endpoint_add_tcp "0.0.0.0:30120"
  6. endpoint_add_udp "0.0.0.0:30120"
  7.  
  8. # These resources will start by default.
  9. start loqscript-material_load-loadingscreen
  10. ensure mysql-async
  11. ensure essentialmode
  12. ensure esplugin_mysql
  13. ensure mapmanager
  14. ensure chat
  15. ensure spawnmanager
  16. ensure sessionmanager
  17. ensure fivem
  18. ensure hardcap
  19. ensure rconlog
  20. ensure scoreboard
  21. ensure es_admin2
  22. ensure async
  23. ensure esx_menu_default
  24. ensure esx_menu_dialog
  25. ensure esx_menu_list
  26. ensure es_extended
  27. ensure esx_addonaccount
  28. ensure esx_skin
  29. ensure esx_jobs
  30. ensure skinchanger
  31. ensure politie
  32. ensure esx_phone
  33. ensure esx_voice
  34. ensure cron
  35. ensure esx_datastore
  36. ensure esx_license
  37. ensure esx_billing
  38. ensure esx_policejob
  39. ensure esx_addoninventory
  40. ensure esx_society
  41. ensure esx_identity
  42. start sound
  43. start discord
  44. start pvp
  45. start esx_cruisecontrol
  46. start esx_vehicleshop
  47. start esx_dmvschool
  48. start esx_ambulancejob
  49. ensure instance
  50. start esx_property
  51. start esx_holdup
  52. start esx_animations
  53. start esx_shops
  54. start esx_atm
  55. start esx_weaponshop
  56. start esx_advancedgarage
  57. start esx_boilerplate
  58. ensure jantours
  59. start esx_doorlock
  60. start vMenu
  61. start afo
  62. start esx_clip
  63. start esx_extraitems
  64.  
  65.  
  66.  
  67. # This allows players to use scripthook-based plugins such as the legacy Lambda Menu.
  68. # Set this to 1 to allow scripthook. Do note that this does _not_ guarantee players won't be able to use external plugins.
  69. sv_scriptHookAllowed 0
  70.  
  71. # Uncomment this and set a password to enable RCON. Make sure to change the password - it should look like rcon_password "YOURPASSWORD"
  72. #rcon_password ""
  73.  
  74. # A comma-separated list of tags for your server.
  75. # For example:
  76. # - sets tags "drifting, cars, racing"
  77. # Or:
  78. # - sets tags "roleplay, military, tanks"
  79. sets tags "default"
  80.  
  81. # A valid locale identifier for your server's primary language.
  82. # For example "en-US", "fr-CA", "nl-NL", "de-DE", "en-GB", "pt-BR"
  83. sets locale "root-AQ"
  84. # please DO replace root-AQ on the line ABOVE with a real language! :)
  85.  
  86. # Set an optional server info and connecting banner image url.
  87. # Size doesn't matter, any banner sized image will be fine.
  88. #sets banner_detail "https://url.to/image.png"
  89. #sets banner_connecting "https://url.to/image.png"
  90.  
  91. # Set your server's hostname
  92. sv_hostname "Greta Djay Airlines"
  93.  
  94. # Nested configs!
  95. #exec server_internal.cfg
  96.  
  97. # Loading a server icon (96x96 PNG file)
  98. #load_server_icon myLogo.png
  99.  
  100. # convars which can be used in scripts
  101. set temp_convar "hey world!"
  102.  
  103. # Uncomment this line if you do not want your server to be listed in the server browser.
  104. # Do not edit it if you *do* want your server listed.
  105. #sv_master1 ""
  106.  
  107. # Add system admins
  108. add_ace group.admin command allow # allow all commands
  109. add_ace group.admin command.quit deny # but don't allow quit
  110. add_ace resource.essentialmode command.sets allow
  111. add_ace resource.essentialmode command.add_principal allow
  112. add_ace resource.essentialmode command.add_ace allow
  113. add_principal identifier.steam:110000100000000 group.admin # add the admin to the group
  114.  
  115. # Hide player endpoints in external log output.
  116. sv_endpointprivacy true
  117.  
  118. # Server player slot limit (must be between 1 and 32, unless using OneSync)
  119. sv_maxclients 32
  120.  
  121. # License key for your server (https://keymaster.fivem.net)
  122. sv_licenseKey gbmy5fw1hgxm194kvkq4zh0sd0lgl88t
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement