Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. # Configuration file
  2.  
  3. ##########################################################################################################
  4. # debugging
  5. #--------------------------------------------------------------------------------------------------------#
  6. # Don't set any values to true, unless you are debugging the mod.
  7. ##########################################################################################################
  8.  
  9. debugging {
  10. # See dev-only sidebar buttons. They probably don't do anything.
  11. B:dev_sidebar_buttons=false
  12.  
  13. # See GUI widget bounds when you hold B.
  14. B:gui_widget_bounds=false
  15.  
  16. # Log config editing.
  17. B:log_config_editing=false
  18.  
  19. # Log all events that extend EventBase.
  20. B:log_events=false
  21.  
  22. # Log incoming and outgoing network messages.
  23. B:log_network=false
  24.  
  25. # Log player teleporting.
  26. B:log_teleport=false
  27.  
  28. # Print more errors.
  29. B:print_more_errors=false
  30.  
  31. # Print more info.
  32. B:print_more_info=false
  33.  
  34. # Enables special debug commands.
  35. B:special_commands=false
  36. }
  37.  
  38.  
  39. general {
  40. # When this mode is enabled, FTBLib assumes that server clients don't have FTBLib and/or other mods installed.
  41. B:clientless_mode=false
  42.  
  43. # Merges player profiles, in case player logged in without internet connection/in offline mode server.
  44. # If set to DEFAULT, it will only merge on singleplayer worlds.
  45. # Valid values:
  46. # TRUE
  47. # FALSE
  48. # DEFAULT
  49. S:merge_offline_mode_players=TRUE
  50.  
  51. # This will replace /reload with FTB version of it.
  52. B:replace_reload_command=true
  53. }
  54.  
  55.  
  56. teams {
  57. # Automatically creates a team for player on multiplayer, based on their username and with a random color.
  58. B:autocreate_mp=false
  59.  
  60. # Automatically creates (or joins) a team on singleplayer/LAN with ID 'singleplayer'.
  61. B:autocreate_sp=true
  62. B:disable_teams=false
  63.  
  64. # Disable no team notification entirely.
  65. B:hide_team_notification=false
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement