Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2018
452
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. # The maximum slots available on the server, do not set higher than current FiveM limit (32)
  2. # If you have a number of reserved type slots configured below the public slot count will always be (q_max_session_slots - q_reserved_type_1_slots - q_reserved_type_2_slots - q_reserved_type_3_slots)
  3. # If the total number of all reserved type slots is larger than the number of q_max_session_slots the queue is configured to not start and warn you in the console that your configuration is wrong
  4.  
  5. set q_max_session_slots 32
  6.  
  7.  
  8. # Whitelisted reserved slot(s).
  9. # If these slots are filled then accounts set with this type will use any open reserved_type_2_slots or reserved_type_3_slots.
  10. # These can be used for owner/administrator(s) or other roles.
  11.  
  12. set q_reserved_type_1_slots 0
  13.  
  14.  
  15. # Whitelisted reserved slot(s).
  16. # If these slots are filled then accounts set with this type will use any reserved_type_3_slots but cannot use any open reserved_type_1_slots.
  17. # These should not be used for owner/administrator(s) but instead for other roles such as police.
  18.  
  19. set q_reserved_type_2_slots 0
  20.  
  21.  
  22. # Whitelisted reserved slot(s).
  23. # Will only use reserved_type_3_slots. Cannot use reserved_type_1_slots or reserved_type_2_slots.
  24. # These should not be used for owner/administrator(s) but instead for other roles sucn as medic.
  25. # These could alternatively be used to setup a server that always reserves a certain number of slots for white listed accounts while the remainder can be used by the general public.
  26.  
  27. set q_reserved_type_3_slots 20
  28.  
  29. # Make the server whitelist only
  30. # Will only allow accounts assigned to q_reserved_type_1_slots, q_reserved_type_2_slots, and q_reserved_type_3_slots to join the queue
  31.  
  32. set q_whitelist_only "false"
  33.  
  34.  
  35. # The number of minutes allowed for accounts to load into the game before we consider their game frozen and drop them.
  36. # Any account that is dropped in this use case is given grace to reconnect again within the number of minutes configured in q_reconnect_grace_time_limit.
  37.  
  38. set q_loading_time_limit 5
  39.  
  40.  
  41. # The number of minutes allowed for accounts to reconnect after they disconnect or crash without going through the queue again.
  42. # Any reserved slot they occupied is also held for them to reconnect with.
  43.  
  44. set q_reconnect_grace_time_limit 5
  45.  
  46. # add queueadmin group with permissions to use all commands
  47.  
  48. add_ace group.queueadmin command.q_session allow
  49. add_ace group.queueadmin command.q_restart allow
  50. add_ace group.queueadmin command.q_kick allow
  51. add_ace group.queueadmin command.q_addban allow
  52. add_ace group.queueadmin command.q_removeban allow
  53. add_ace group.queueadmin command.q_addpriority allow
  54. add_ace group.queueadmin command.q_removepriority allow
  55. add_ace group.queueadmin command.q_addreserve allow
  56. add_ace group.queueadmin command.q_removereserve allow
  57. add_ace group.queueadmin command.q_offlinereserve allow
  58.  
  59. # Add steam or license identifiers that need to be included in the queueadmin group
  60. # Examples below using steam or license
  61. # Copy an example below, change the identifer and remove the '#' to be valid
  62. add_principal identifier.steam:1100001076e0d0c group.queueadmin
  63. add_principal identifier.license:56bc872ec2db7978314b3ff0176f50a3ce9f2179 group.queueadmin
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement