Guest User

FX Server FiveM

a guest
Nov 19th, 2017
2,842
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 1st slot both Notepad++
  2. # you probably don't want to change these!
  3. # only change them if you're using a server with multiple network interfaces
  4. endpoint_add_tcp "0.0.0.0:30120"
  5. endpoint_add_udp "0.0.0.0:30120"
  6.  
  7. start mapmanager
  8. start chat
  9. start spawnmanager
  10. start sessionmanager
  11. start fivem
  12. start hardcap
  13. start rconlog
  14. start scoreboard
  15. start playernames
  16.  
  17. sv_scriptHookAllowed 1
  18.  
  19. # change this
  20. #rcon_password yay
  21.  
  22. sv_hostname "Moonah's Test Server"
  23.  
  24. # nested configs!
  25. #exec server_internal.cfg
  26.  
  27. # loading a server icon (96x96 PNG file)
  28. #load_server_icon myLogo.png
  29.  
  30. # convars for use from script
  31. set temp_convar "hey world!"
  32.  
  33. # disable announcing? clear out the master by uncommenting this
  34. #sv_master1 ""
  35.  
  36. # want to only allow players authenticated with a third-party provider like Steam?
  37. #sv_authMaxVariance 1
  38. #sv_authMinTrust 5
  39.  
  40. # add system admins
  41. add_ace group.admin command allow # allow all commands
  42. add_ace group.admin command.quit deny # but don't allow quit
  43. add_principal identifier.steam:110000112345678 group.admin # add the admin to the group
  44.  
  45. # remove the # to hide player endpoints in external log output
  46. #sv_endpointprivacy true
  47.  
  48. # server slots limit (default to 32)
  49. sv_maxclients 8
  50.  
  51.  
  52.  
  53.  
  54. 2nd slot
  55. run.cmd +exec server.cfg
Add Comment
Please, Sign In to add comment