Advertisement
Guest User

Fivem

a guest
Apr 18th, 2022
1,184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 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 basic-gamemode
  11. ensure hardcap
  12. ensure rconlog
  13.  
  14. # This allows players to use scripthook-based plugins such as the legacy Lambda Menu.
  15. # Set this to 1 to allow scripthook. Do note that this does _not_ guarantee players won't be able to use external plugins.
  16. sv_scriptHookAllowed 0
  17.  
  18. # Uncomment this and set a password to enable RCON. Make sure to change the password - it should look like rcon_password "YOURPASSWORD"
  19. #rcon_password ""
  20.  
  21. # A comma-separated list of tags for your server.
  22. # For example:
  23. # - sets tags "drifting, cars, racing"
  24. # Or:
  25. # - sets tags "roleplay, military, tanks"
  26. sets tags "default"
  27.  
  28. # A valid locale identifier for your server's primary language.
  29. # For example "en-US", "fr-CA", "nl-NL", "de-DE", "en-GB", "pt-BR"
  30. sets locale "root-AQ"
  31. # please DO replace root-AQ on the line ABOVE with a real language! :)
  32.  
  33. # Set an optional server info and connecting banner image url.
  34. # Size doesn't matter, any banner sized image will be fine.
  35. #sets banner_detail "https://url.to/image.png"
  36. #sets banner_connecting "https://url.to/image.png"
  37.  
  38. # Set your server's hostname. This is not usually shown anywhere in listings.
  39. sv_hostname "FXServer, but unconfigured"
  40.  
  41. # Set your server's Project Name
  42. sets sv_projectName "My FXServer Project"
  43.  
  44. # Set your server's Project Description
  45. sets sv_projectDesc "Default FXServer requiring configuration"
  46.  
  47. # Nested configs!
  48. #exec server_internal.cfg
  49.  
  50. # Loading a server icon (96x96 PNG file)
  51. #load_server_icon myLogo.png
  52.  
  53. # convars which can be used in scripts
  54. set temp_convar "hey world!"
  55.  
  56. # Remove the `#` from the below line if you do not want your server to be listed in the server browser.
  57. # Do not edit it if you *do* want your server listed.
  58. #sv_master1 ""
  59.  
  60. # Add system admins
  61. add_ace group.admin command allow # allow all commands
  62. add_ace group.admin command.quit deny # but don't allow quit
  63. add_principal identifier.fivem:1 group.admin # add the admin to the group
  64.  
  65. # enable OneSync (required for server-side state awareness)
  66. set onesync on
  67.  
  68. # Server player slot limit (see https://fivem.net/server-hosting for limits)
  69. sv_maxclients 48
  70.  
  71. # Steam Web API key, if you want to use Steam authentication (https://steamcommunity.com/dev/apikey)
  72. # -> replace "" with the key
  73. set steam_webApiKey ""
  74.  
  75. # License key for your server (https://keymaster.fivem.net)
  76. sv_licenseKey changeme
  77.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement