Advertisement
kriscs

Untitled

Feb 17th, 2020
3,117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. # This allows players to use scripthook-based plugins such as the legacy Lambda Menu.
  16. # Set this to 1 to allow scripthook. Do note that this does _not_ guarantee players won't be able to use external plugins.
  17. sv_scriptHookAllowed 0
  18.  
  19. # Uncomment this and set a password to enable RCON. Make sure to change the password - it should look like rcon_password "YOURPASSWORD"
  20. #rcon_password ""
  21.  
  22. # A comma-separated list of tags for your server.
  23. # For example:
  24. # - sets tags "drifting, cars, racing"
  25. # Or:
  26. # - sets tags "roleplay, military, tanks"
  27. sets tags "default"
  28.  
  29. # A valid locale identifier for your server's primary language.
  30. # For example "en-US", "fr-CA", "nl-NL", "de-DE", "en-GB", "pt-BR"
  31. sets locale "root-AQ"
  32. # please DO replace root-AQ on the line ABOVE with a real language! :)
  33.  
  34. # Set an optional server info and connecting banner image url.
  35. # Size doesn't matter, any banner sized image will be fine.
  36. #sets banner_detail "https://url.to/image.png"
  37. #sets banner_connecting "https://url.to/image.png"
  38.  
  39. # Set your server's hostname
  40. sv_hostname "[EESTI] Polevkivi RP! ARENDUS KÄIB!"
  41. # Nested configs!
  42. #exec server_internal.cfg
  43.  
  44. # Loading a server icon (96x96 PNG file)
  45. #load_server_icon myLogo.png
  46.  
  47. # convars which can be used in scripts
  48. set temp_convar "hey world!"
  49.  
  50. # Uncomment this line if you do not want your server to be listed in the server browser.
  51. # Do not edit it if you *do* want your server listed.
  52. #sv_master1 ""
  53.  
  54. # Add system admins
  55. add_ace group.admin command allow # allow all commands
  56. add_ace group.admin command.quit deny # but don't allow quit
  57. add_principal identifier.fivem:1 group.admin # add the admin to the group
  58.  
  59. # Hide player endpoints in external log output.
  60. sv_endpointprivacy true
  61.  
  62. # Server player slot limit (must be between 1 and 32, unless using OneSync)
  63. sv_maxclients 32
  64.  
  65. # Steam Web API key, if you want to use Steam authentication (https://steamcommunity.com/dev/apikey)
  66. # -> replace "" with the key
  67. set steam_webApiKey EBBF9AEA23EDBBA15F5C0AE28B2301A3
  68.  
  69. # License key for your server (https://keymaster.fivem.net)
  70. sv_licenseKey 5sbk03o64wd81qrmi8y2eq66roawx26k
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement