Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.48 KB | None | 0 0
  1. ; MultiOgar configurations file
  2. ; Lines starting with semicolons are comments
  3.  
  4. ; [NOTES]
  5. ; MultiOgar uses cell size instead of cell mass to improve performance!
  6. ; In order to get the cell size from mass value, you need to calculate using this formula:
  7. ; size = SQRT( mass * 100 )
  8. ;
  9. ; For example, to set start mass = 43:
  10. ; size = SQRT( 43 * 100 ) = SQRT( 4300 ) = 65.57
  11. ; Set playerStartSize = 66
  12. ;
  13. ; Also, you can use the following syntax to specify mass:
  14. ; playerStartSize = massToSize(43)
  15. ; It will be automatically converted to 66
  16.  
  17. ; [LOGGING]
  18. ; logVerbosity: Console log level (0=NONE; 1=FATAL; 2=ERROR; 3=WARN; 4=INFO; 5=DEBUG)
  19. ; logFileVerbosity: File log level
  20. logVerbosity = 4
  21. logFileVerbosity = 5
  22.  
  23. ; [SERVER]
  24. ; serverTimeout: Seconds to keep connection alive for non-responding client
  25. ; serverWsModule: WebSocket module: 'ws' or 'uws' (install npm package before using uws)
  26. ; serverMaxConnections: Maximum number of connections to the server. (0 for no limit)
  27. ; serverPort: Server port which will be used to listen for incoming connections
  28. ; serverBind: Server network interface which will be used to listen for incoming connections (0.0.0.0 for all IPv4 interfaces)
  29. ; serverTracker: Set to 1 if you want to show your server on the tracker http://ogar.mivabe.nl/master (check that your server port is opened for external connections first!)
  30. ; serverGamemode: Gamemodes: 0 = FFA, 1 = Teams, 2 = Experimental, 3 = Rainbow
  31. ; serverBots: Number of player bots to spawn (Experimental)
  32. ; serverViewBase: Base view distance of players. Warning: high values may cause lag! Min value is 1920x1080
  33. ; serverMinScale: Minimum viewbox scale for player (low value leads to lags due to large visible area for big cell)
  34. ; serverSpectatorScale: Scale (field of view) used for free roam spectators (low value leads to lags, vanilla = 0.4, old vanilla = 0.25)
  35. ; serverStatsPort: Port for the stats server. Having a negative number will disable the stats server.
  36. ; serverStatsUpdate: Update interval of server stats in seconds
  37. ; mobilePhysics: Whether or not the server uses mobile agar.io physics
  38. serverTimeout = 0
  39. serverWsModule = "ws"
  40. serverMaxConnections = 1000
  41. serverPort = 8885
  42. serverBind = "0.0.0.0"
  43. serverTracker = 1
  44. serverGamemode = 0
  45. serverBots = 0
  46. serverViewBaseX = 1920
  47. serverViewBaseY = 1080
  48. serverMinScale = 0.15
  49. serverSpectatorScale = 0.4
  50. serverStatsPort = 8880
  51. serverStatsUpdate = 60
  52. mobilePhysics = 0
  53.  
  54. ; [CLIENT]
  55. ; serverMaxLB: Controls the maximum players displayed on the leaderboard.
  56. ; serverChat: Allows the usage of server chat. 0 = no chat, 1 = use chat.
  57. ; serverChatAscii: Set to 1 to disable non-ANSI letters in the chat (english only)
  58. ; serverName: Server name, for example "My great server"
  59. ; serverWelcome1: First server welcome message
  60. ; serverWelcome2: Second server welcome message (optional, for info, etc)
  61. ; clientBind: Only allow connections to the server from specified client (eg: http://agar.io - http://mywebsite.com - http://more.com) [Use ' - ' to seperate different websites]
  62. serverMaxLB = 10
  63. serverChat = 1
  64. serverChatAscii = 1
  65. serverName = "Private Server by Genti YT"
  66. serverWelcome1 = "Welcome to This private server by Genti!"
  67. serverWelcome2 = "Subscribe YT: www.youtube.com/c/progamingkosovatv"
  68. clientBind = ""
  69.  
  70. ; [ANTI-BOT]
  71. ; serverIpLimit: Controls the maximum number of connections from the same IP (0 for no limit)
  72. ; serverMinionIgnoreTime: minion detection disable time on server startup [seconds]
  73. ; serverMinionThreshold: max connections within serverMinionInterval time period, which will not be marked as minion
  74. ; serverMinionInterval: minion detection interval [milliseconds]
  75. ; serverScrambleLevel: Toggles scrambling of coordinates. 0 = No scrambling, 1 = lightweight scrambling. 2 = full scrambling (also known as scramble minimap), 3 - high level scrambling (no border)
  76. ; playerBotGrow: Cells greater than 625 mass cannot grow from players under 17 mass (set to 1 to disable)
  77. serverIpLimit = 4
  78. serverMinionIgnoreTime = 30
  79. serverMinionThreshold = 10
  80. serverMinionInterval = 1000
  81. serverScrambleLevel = 0
  82. playerBotGrow = 1
  83.  
  84. ; [BORDER]
  85. ; Border size (vanilla 14142.135623730952)
  86. borderWidth = 14142.135623730952
  87. borderHeight = 14142.135623730952
  88.  
  89. ; [FOOD]
  90. ; foodMinSize: vanilla 10 (mass = 10*10/100 = 1 mass)
  91. ; foodMaxSize: vanilla 20 (mass = 20*20/100 = 4 mass)
  92. ; foodMinAmount: Minimum food cells on the map
  93. ; foodMaxAmount: Maximum food cells on the map (only applied in experimental)
  94. ; foodSpawnAmount: The number of food to spawn per spawnInterval
  95. ; foodMassGrow: Enable food mass grow ?
  96. ; spawnInterval: The interval between each food cell spawn in ticks (1 tick = 40 ms)
  97. foodMinSize = 10
  98. foodMaxSize = 20
  99. foodMinAmount = 1000
  100. foodMaxAmount = 2000
  101. foodSpawnAmount = 30
  102. foodMassGrow = 1
  103. spawnInterval = 20
  104.  
  105. ; [VIRUSES]
  106. ; virusMinSize: Minimum virus size. (vanilla: mass = val*val/100 = 100 mass)
  107. ; virusMaxSize: Maximum virus size (vanilla: mass = val*val/100 = 200 mass)
  108. ; virusMinAmount: Minimum number of viruses on the map.
  109. ; virusMaxAmount: Maximum number of viruses on the map. If this number is reached, then ejected cells will pass through viruses.
  110. ; motherCellMaxMass: Maximum amount of mass a mothercell is allowed to have (0 for no limit)
  111. ; virusVelocity: Velocity of moving viruses (speed and distance)
  112. virusMinSize = 100
  113. virusMaxSize = 141.421356237
  114. virusMinAmount = 50
  115. virusMaxAmount = 100
  116. motherCellMaxMass = 0
  117. virusVelocity = 780
  118.  
  119. ; [EJECTED MASS]
  120. ; ejectSize: vanilla: mass = val*val/100 = 13 mass?
  121. ; ejectSizeLoss: Eject size which will be substracted from player cell (vanilla: mass = val*val/100 = 18 mass?)
  122. ; ejectCooldown: Tick count until a player can eject mass again in ticks (1 tick = 40 ms)
  123. ; ejectSpawnPercent: Chance for a player to spawn from ejected mass. 0.5 = 50% (set to 0 to disable)
  124. ; ejectVirus: Whether or not players can eject viruses instead of mass
  125. ; ejectVelocity: Velocity of ejecting cells (speed and distance)
  126. ejectSize = 36.06
  127. ejectSizeLoss = 42.43
  128. ejectCooldown = 3
  129. ejectSpawnPercent = 0.5
  130. ejectVirus = 0
  131. ejectVelocity = 475
  132.  
  133. ; [PLAYERS]
  134. ; Reminder: MultiOgar uses cell size instead of mass!
  135. ; playerStartMass replaced with playerStartSize
  136. ;
  137. ; playerMinSize: Minimum size a player cell can decay too. (vanilla: val*val/100 = 10 mass)
  138. ; playerMaxSize: Maximum size a player cell can achive before auto-splitting. (vanilla: mass = val*val/100 = 22500 mass)
  139. ; playerMinSplitSize: Mimimum size a player cell has to be to split. (vanilla: mass = val*val/100 = 36 mass)
  140. ; playerMinEjectSize: Minimum size a player cell has to be to eject mass. (vanilla: mass = val*val/100 = 32 mass)
  141. ; playerStartSize: Start size of the player cell. (vanilla: mass = val*val/100 = 10 mass)
  142. ; playerMaxCells: Maximum cells a player is allowed to have.
  143. ; playerSpeed: Player speed multiplier (1 = normal speed, 2 = twice the normal speed)
  144. ; playerRecombineTime: Base time in seconds before a cell is allowed to recombine (vanilla: 30 seconds)
  145. ; playerDecayRate: Amount of player cell size lost per second
  146. ; playerDecayCap: Maximum mass a cell can have before it's decayrate multiplies by 10. (0 to disable)
  147. ; playerDisconnectTime: Time in seconds before a disconnected player's cell is removed (Set to -1 to never remove)
  148. ; splitVelocity: Velocity of splitting cells (speed and distance)
  149. playerMinSize = 31.6227766017
  150. playerMaxSize = 1500
  151. playerMinSplitSize = 60
  152. playerMinEjectSize = 56.56854249
  153. playerStartSize = 120.6227766017
  154. playerMaxCells = 16
  155. playerSpeed = 1
  156. playerDecayRate = 0.002
  157. playerDecayCap = 0
  158. playerRecombineTime = 30
  159. playerMaxNickLength = 30
  160. playerDisconnectTime = -1
  161. splitVelocity = 475
  162.  
  163. ; [MINIONS]
  164. ; Custom minion settings
  165. ; minionStartSize: Start size of minions (mass = val*val/100 = 10 mass)
  166. ; minionMaxStartSize: Maximum value of random start size for minions (set value higher than minionStartSize to enable)
  167. ; disableERTP: Whether or not to disable ERTP controls for minions. (must use ERTPcontrol script in /scripts) (Set to 0 to enable)
  168. ; disableQ: Whether or not to disable Q controls for minions. (Set 0 to enable)
  169. ; serverMinions: Amount of minions each player gets once they spawn
  170. ; collectPellets: Enable collect pellets mode for minions. To use, use the ERTPcontrol script and press "P"
  171. ; defaultName: Default name for all minions if name is not specified using command (put <r> before the name for random skins!)
  172. minionStartSize = 42.6227766017
  173. minionMaxStartSize = 31.6227766017
  174. disableERTP = 0
  175. disableQ = 1
  176. serverMinions = 10
  177. collectPellets = 1
  178. defaultName = "<r> www.genti.ml"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement