whitelist.sqf 742 B

12345678910111213141516171819202122
  1. // TODO: Do we really need this?
  2. // Here you can allow people to use the commander slot. It will only be enforced if you activate the related mission option.
  3. // When editing be careful with quotes and commas
  4. // Allowed team tags, as defined in your team's squad.xml
  5. // This isn't very secure but efficient to whitelist a lot of people at once.
  6. GRLIB_whitelisted_tags = [
  7. ];
  8. // Allowed individual players based on their SteamID64. This is the most secure way to do.
  9. // For example: "76561198016642627"
  10. // To know that information: https://steamid.io/
  11. GRLIB_whitelisted_steamids = [
  12. ];
  13. // Allowed individual player names. Note that this method is not very secure contrary to SteamIDs.
  14. // For exemple: "Zbug"
  15. GRLIB_whitelisted_names = [
  16. ];