Yup, it just got there. https://github.com/github.com/OxideMod/Snapshots/v164
Setting up a Rust server with Windows
Discussion in 'Guides and Tips' started by Wulf, Oct 9, 2014.
-
Wulf Community Admin
-
bugger, only just finished updating to v111
[DOUBLEPOST=1413911043][/DOUBLEPOST]Big thanks to all the guys involved getting oxide updated so quick, your efforts are greatly appreciated
Last edited by a moderator: Oct 21, 2014 -
Have v164 oxide installed and also VC redist 2012 64/86 installed.
Get this error and server locks CPU.
Code:FileNotFoundException: Could not load Oxide root configuration at Oxide.Core.OxideMod.Load () [0x00000] in <filename unknown>:0 at Oxide.Core.Interface.Initialise () [0x00000] in <filename unknown>:0 at Bootstrap.Initialization () [0x00000] in <filename unknown>:0 at Bootstrap+<Start>c__Iterator0.MoveNext () [0x00000] in <filename unknown>:0 (Filename: Line: -1)
-
Wulf Community Admin
-
Doesn't look like OnPlayerSpawn is fired every time a player dies and respawns. Works fine on the connection sequence but if you F1 kill, then respawn does not fire off OnPlayerSpawn.
-
Wulf Community Admin
-
I have simply extracted the v164 into the release folder. -
Wulf Community Admin
-
No modification we simply have the zip extracted by tcadmin.
-
Wulf Community Admin
-
-
I have been "testing" Blue Fang Solutions for my new Rust Oxide Server and I can state at this point, they are the best ISP I have worked with yet! Extremely responsive and able to accommodate anything I have needed so far for development and running of my Oxide Rust Server. After the nightmares I had on legacy rust ISP's this is a big welcome.
I highly recommend them. You don't have direct access to the start job but they will change your command in a couple of minutes, etc...they are EXTREMELY fast to respond and know what they are doing.Last edited by a moderator: Oct 22, 2014 -
Wulf, that Github link you just did, is that something that can just be downloaded and copied to the server?
-
Wulf Community Admin
-
I just dropped this onto my server, and server won't start up when I did it. :-(
-
Wulf Community Admin
-
Private Messaged you.
-
Wulf Community Admin
If anyone is interested in a more complicated, yet organized setup...
My batch script for Windows with moved save and log, and dated Rust log:
Code:@echo off set IDENTITY="wulf" RustDedicated.exe -batchmode -server.hostname "Oxide Server" -server.port 28015 +server.identity %IDENTITY% +server.maxplayers 100 -logFile "server/%IDENTITY%/logs/rust_%DATE:~-7,2%-%DATE:~-10,2%-%DATE:~-4,4%.txt"
Code:#!/bin/sh IDENTITY="wulf" RustDedicated -batchmode -server.hostname "The Wulf Den" -server.port 28015 +server.identity $IDENTITY +server.maxplayers 100 -logFile "server/${IDENTITY}/logs/rust_`date +"%d-%m-%Y"`.txt"
Code:{ "ExtensionDirectory": "RustDedicated_Data\\Managed", "PluginDirectory": "plugins", "ConfigDirectory": "cfg", "DataDirectory": "data", "LogDirectory": "logs", "InstanceCommandLines": [ "{oxide.directory}", "server\\{server.identity}", "server" ] }
Last edited: Jul 6, 2015 -
Edit: disregard as I saw how in a post above mine ><
Great guide ^^Last edited by a moderator: Oct 22, 2014 -
Is there some Way to reload the plugins without restarting the server?