Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. {
  2. "name": "Name of the game as it will appear in the game listing",
  3. "description": "Description of the game that will appear in the listing",
  4. "tags": ["game", "tags"],
  5.  
  6. "_comment_max_players": "Maximum number of players allowed, admins can join even a full server. 0 means unlimited.",
  7. "max_players": 0,
  8.  
  9. "_comment_visibility": ["public: Game will be published on the official Factorio matching server",
  10. "lan: Game will be broadcast on LAN"],
  11. "visibility":
  12. {
  13. "public": true,
  14. "lan": true
  15. },
  16.  
  17. "_comment_credentials": "Your factorio.com login credentials. Required for games with visibility public",
  18. "username": "",
  19. "password": "",
  20.  
  21. "_comment_token": "Authentication token. May be used instead of 'password' above.",
  22. "token": "",
  23.  
  24. "game_password": "",
  25.  
  26. "_comment_require_user_verification": "When set to true, the server will only allow clients that have a valid Factorio.com account",
  27. "require_user_verification": false,
  28.  
  29. "_comment_max_upload_in_kilobytes_per_second" : "optional, default value is 0. 0 means unlimited.",
  30. "max_upload_in_kilobytes_per_second": 0,
  31.  
  32. "_comment_minimum_latency_in_ticks": "optional one tick is 16ms in default speed, default value is 0. 0 means no minimum.",
  33. "minimum_latency_in_ticks": 0,
  34.  
  35. "_comment_ignore_player_limit_for_returning_players": "Players that played on this map already can join even when the max player limit was reached.",
  36. "ignore_player_limit_for_returning_players": false,
  37.  
  38. "_comment_allow_commands": "possible values are, true, false and admins-only",
  39. "allow_commands": "admins-only",
  40.  
  41. "_comment_autosave_interval": "Autosave interval in minutes",
  42. "autosave_interval": 10,
  43.  
  44. "_comment_autosave_slots": "server autosave slots, it is cycled through when the server autosaves.",
  45. "autosave_slots": 5,
  46.  
  47. "_comment_afk_autokick_interval": "How many minutes until someone is kicked when doing nothing, 0 for never.",
  48. "afk_autokick_interval": 0,
  49.  
  50. "_comment_auto_pause": "Whether should the server be paused when no players are present.",
  51. "auto_pause": true,
  52.  
  53. "only_admins_can_pause_the_game": true,
  54.  
  55. "_comment_autosave_only_on_server": "Whether autosaves should be saved only on server or also on all connected clients. Default is true.",
  56. "autosave_only_on_server": true,
  57.  
  58. "_comment_non_blocking_saving": "Highly experimental feature, enable only at your own risk of losing your saves. On UNIX systems, server will fork itself to create an autosave. Autosaving on connected Windows clients will be disabled regardless of autosave_only_on_server option.",
  59. "non_blocking_saving": false,
  60.  
  61. "_comment_admins": "List of case insensitive usernames, that will be promoted immediately",
  62. "admins": []
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement