1. Code:
    ArgumentException: Value does not fall within the expected range.
      at UnityEngine.StringEx+<SplitToChunks>c__Iterator24.MoveNext () [0x00000] in <filename unknown>:0
      at System.Collections.Generic.List`1[System.String].AddEnumerable (IEnumerable`1 enumerable) [0x00000] in <filename unknown>:0
      at System.Collections.Generic.List`1[System.String]..ctor (IEnumerable`1 collection) [0x00000] in <filename unknown>:0
      at System.Linq.Enumerable.ToArray[String] (IEnumerable`1 source) [0x00000] in <filename unknown>:0
      at ServerMgr.UpdateServerInformation () [0x00000] in <filename unknown>:0
    (Filename:  Line: -1)Failed to update server information: Exception has been thrown by the target of an invocation.
    (Filename: C:/buildslave/unity/build/artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 42)ArgumentException: Value does not fall within the expected range.
      at UnityEngine.StringEx+<SplitToChunks>c__Iterator24.MoveNext () [0x00000] in <filename unknown>:0
      at System.Collections.Generic.List`1[System.String].AddEnumerable (IEnumerable`1 enumerable) [0x00000] in <filename unknown>:0
      at System.Collections.Generic.List`1[System.String]..ctor (IEnumerable`1 collection) [0x00000] in <filename unknown>:0
      at System.Linq.Enumerable.ToArray[String] (IEnumerable`1 source) [0x00000] in <filename unknown>:0
      at ServerMgr.UpdateServerInformation () [0x00000] in <filename unknown>:0
    (Filename:  Line: -1)
    
    This is what has came out of the output.txt

    (15:08:20) | ArgumentException: Value does not fall within the expected range.
     
  2. Wulf

    Wulf Community Admin

    Something you are setting in your startup script or server.cfg is invalid I believe. Make sure you are using values with all arguments that require them.
     
  3. Code:
    echo off
    :startcd rustds
    RustDedicated.exe -batchmode -nographics +server.maxplayers 125 +rcon.web 1 +server.port 28015 +server.hostname "[SMS]Rusty Grenade ZLevels/kits/clans/TP/Wiped 1/19" +server.level "Procedural Map" +server.worldsize 3000 +server.seed 1337 +server.headerimage "http://i.imgur.com/Lg6eT4l.png" +server.description "Rusty Grenade Where The Strong Survive\n 2x Gather\n 2x Smelt\n Admins\n New GUI\n Tweaked AirDrops\n Weather\n 2 Week Wipes \n Sponsored By S.M.S Gaming\n Almost Vanilla Server" +rcon.ip 0.0.0.0 +rcon.port 28020 +rcon.password "xxxx" +server.tickrate 30 +server.identity "my_server_identity" +chat.serverlog 1 +server.netlog 1 +server.saveinterval 600 +server.globalchat true -logFile "output.txt" -autoupdategoto start
    
    and
    Code:
    {
      "OxideConsole": {
        "Enabled": true,
        "MinimalistMode": true,
        "ShowStatusBar": true,
        "ShowStacktraces": false
      },
      "InstanceCommandLines": [
        "{oxide.directory}",
        "server\\{server.identity}\\oxide",
        "server\\my_server_identity\\oxide"
      ],
      "ConfigDirectory": "config",
      "ExtensionDirectory": "RustDedicated_Data\\Managed"
    }
     
  4. Wulf

    Wulf Community Admin

    The oxide.config.json wouldn't be related to it. Try removing -autoupdate at the end.
     
  5. Removed -update same issue happening still.
     
  6. Wulf

    Wulf Community Admin

    How about your server.cfg file?
     
  7. Sorry? I don't find this anywhere in my server. except this
    Code:
    fps.limit "256"
    global.perf "0"
    server.meleedamage "1"
    server.arrowdamage "1"
    server.bulletdamage "1"
    server.bleedingdamage "1"
    server.meleearmor "1"
    server.arrowarmor "1"
    server.bulletarmor "1"
    server.bleedingarmor "1"
    
    [DOUBLEPOST=1485126353][/DOUBLEPOST]Strange, I don't know what I did but I removed and readded the oxide folder (contains data, plugins, config, and etc) and added back the -update line in the startup and it all works now.
     
  8. Wulf

    Wulf Community Admin

    The -update and -autoupdate arguments will not be used, they can be left out. It sounds like somewhere had an invalid command set with no argument when it expected one though.