Advertisement
Guest User

Exile Server Config

a guest
Dec 21st, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. class RCON
  2. {
  3. /*
  4. Note that for this to work you need to have serverCommandPassowrd defined in config.cfg and BE enabled
  5. */
  6.  
  7. // This needs to match config.cfg serverCommandPassword
  8.  
  9. serverPassword = "obviouslyitsnotmyrealpass";
  10.  
  11. // Autolocks server until its ready to accept players
  12.  
  13. useAutoLock = 1;
  14.  
  15. // Server will autoLock at that time before restart (minutes)
  16.  
  17. restartAutoLock = 3;
  18.  
  19. /*
  20. Number of hours and minutes of your restart period.
  21.  
  22. Examples:
  23.  
  24. {4, 0} = Every 4 hours
  25. {1, 30} = Every one and a half hour (who the hell would do this?)
  26. */
  27.  
  28. restartTimer[] = {4, 0};
  29.  
  30. /*
  31. Kicks players before restart to prevent gear loss.
  32. We strongely recommend to use this!
  33.  
  34. 0 = off
  35. 1 = on
  36. */
  37.  
  38. useAutoKick = 1;
  39.  
  40. /*
  41. Number of minutes before the server kicks players that did
  42. not disconnect before the restart. Should at least be two
  43. minutes!
  44. */
  45.  
  46. kickTime = 2;
  47.  
  48. /*
  49. Self-explanatory
  50.  
  51. 0 = off
  52. 1 = on
  53. */
  54.  
  55. useRestartMessages = 1;
  56.  
  57. /*
  58. Number of minutes before the restart to inform your players.
  59.  
  60. Only use full minutes here. Value like 5.5 have not been tested.
  61. */
  62.  
  63. restartWarningTime[] = {15, 10, 5, 3};
  64.  
  65. /*
  66. If set to 1 server will execute '#shutdown',
  67. to try to shutdown the server
  68. */
  69.  
  70. useShutdown = 0;
  71. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement