Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. # Only change the IP if you're using a server with multiple network interfaces, otherwise change the port only.
  2. endpoint_add_tcp "0.0.0.0:30120"
  3. endpoint_add_udp "0.0.0.0:30120"
  4.  
  5. # These resources will start by default.
  6. ensure mapmanager
  7. ensure chat
  8. ensure spawnmanager
  9. ensure sessionmanager
  10. ensure fivem
  11. ensure hardcap
  12. ensure rconlog
  13. ensure scoreboard
  14.  
  15. # Disable Couchdb from essentialmode
  16. set es_enableCustomData 1
  17.  
  18. # This allows players to use scripthook-based plugins such as the legacy Lambda Menu.
  19. # Set this to 1 to allow scripthook. Do note that this does _not_ guarantee players won't be able to use external plugins.
  20. sv_scriptHookAllowed 0
  21.  
  22. # Uncomment this and set a password to enable RCON. Make sure to change the password - it should look like rcon_password "YOURPASSWORD"
  23. #rcon_password ""
  24.  
  25. # A comma-separated list of tags for your server.
  26. # For example:
  27. # - sets tags "drifting, cars, racing"
  28. # Or:
  29. # - sets tags "roleplay, military, tanks"
  30. sets tags "roleplay"
  31.  
  32. # A valid locale identifier for your server's primary language.
  33. # For example "en-US", "fr-CA", "nl-NL", "de-DE", "en-GB", "pt-BR"
  34. sets locale "root-AQ"
  35. # please DO replace root-AQ on the line ABOVE with a real language! :)
  36.  
  37. # Set an optional server info and connecting banner image url.
  38. # Size doesn't matter, any banner sized image will be fine.
  39. #sets banner_detail "https://url.to/image.png"
  40. #sets banner_connecting "https://url.to/image.png"
  41.  
  42. # Set your server's hostname
  43. sv_hostname "FXServer, but unconfigured"
  44.  
  45. # Nested configs!
  46. #exec server_internal.cfg
  47.  
  48. # Loading a server icon (96x96 PNG file)
  49. #load_server_icon myLogo.png
  50.  
  51. # convars which can be used in scripts
  52. set temp_convar "hey world!"
  53.  
  54. # Uncomment this line if you do not want your server to be listed in the server browser.
  55. # Do not edit it if you *do* want your server listed.
  56. #sv_master1 "test"
  57.  
  58. # Add system admins
  59. add_ace group.admin command allow # allow all commands
  60. add_ace group.admin command.quit deny # but don't allow quit
  61. add_principal identifier.fivem:1 group.admin # add the admin to the group
  62.  
  63. # Hide player endpoints in external log output.
  64. sv_endpointprivacy true
  65.  
  66. # Server player slot limit (must be between 1 and 32, unless using OneSync)
  67. sv_maxclients 32
  68.  
  69. # Steam Web API key, if you want to use Steam authentication (https://steamcommunity.com/dev/apikey)
  70. # -> replace "" with the key
  71. #set steam_webApiKey ""
  72.  
  73. # License key for your server (https://keymaster.fivem.net)
  74. sv_licenseKey bnmltzbf1lm8uoblu2p01opnr0det383
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement