Advertisement
Guest User

Untitled

a guest
May 26th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. ## you probably don't want to change these!
  2. # only change them if you're using a server with multiple network interfaces
  3. set mysql_connection_string "server=127.0.0.1;database=vrpfx;userid=root;password=pass"
  4. endpoint_add_tcp "127.0.0.1"
  5. endpoint_add_udp "127.0.0.1"
  6.  
  7. sv_scriptHookAllowed 0
  8.  
  9. # change this
  10. rcon_password GTFX1234
  11.  
  12. sv_hostname "[#1] ^4Project Unknown^0[DK]"
  13.  
  14. # loading a server icon (96x96 PNG file)
  15. load_server_icon logo.png
  16.  
  17. # convars for use from script
  18. set ipwhitelist "0"
  19. set blockotherip "0"
  20. set servernumber "1"
  21. #sets banner_detail "http://byhyperion.net/graphics/gtav/banner.png"
  22. #sets banner_connecting "http://byhyperion.net/graphics/gtav/banner.png"
  23. set ac_webhook "https://discordapp.com/api/webhooks/552999532204392451/P1CsIXJ6KDJVSuJ6pakpSD8lNCJaK2A_9faSdBsTn4EGrJxdPbKSXEk7N87-FCU2gJAp"
  24. #sets Hjemmeside "https://byhyperion.net/"
  25. #sets Discord "https://discord.gg/aNfKRvb"
  26. #sets TeamSpeak3 "ts.byhyperion.net"
  27.  
  28. # disable announcing? clear out the master by uncommenting this
  29. #sv_master1 ""
  30.  
  31. #Clienter online
  32. sv_maxclients 32
  33.  
  34. # want to only allow players authenticated with a third-party provider like Steam?
  35. sv_authMaxVariance 1
  36. sv_authMinTrust 5
  37.  
  38. # add system admins
  39. add_ace group.admin command allow # allow all commands
  40. add_ace group.admin command.quit deny # but don't allow quit
  41. add_ace builtin.everyone command.run deny
  42. add_ace builtin.everyone command.crun deny
  43. add_ace group.rvn fax allow # allow all commands for FAXES Script moderators
  44. add_principal identifier.steam:110000106cc1dde group.rvn
  45.  
  46. # hide player endpoints in external log output
  47. sv_endpointprivacy true
  48.  
  49. # start resources
  50. exec server_resources.cfg
  51.  
  52. # choose what map to load, keep to make it only use the default map
  53. map fivem-map-skater
  54.  
  55. # License key for your server (https://keymaster.fivem.net)
  56. sv_licenseKey 4ugauf3f4taso628ejim6f5j1i9fahxx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement