1. I've loaded a fresh rust server then installed oxide 2 as per instructions.
    Everything works fine and I get no error messages when the server loads.
    I can connect.

    I can hot load and unload a simple compass.lua and it works fine.

    The problems start when I try to load a cs file like 'Remover Tool.cs' the server will not start with any cs file and if I try to hot load it it says its already in the queue to be loaded but it never loads.

    Any ideas as to what might be wrong.
    Code:
    6:24 PM [Info] Loading Oxide core v2.0.886...
    6:24 PM [Info] Loading extensions...
    6:24 PM [Info] Loaded extension CSharp v1.0.886 by Oxide Team
    6:24 PM [Info] Loaded extension JavaScript v1.0.886 by Oxide Team
    6:24 PM [Info] Loaded extension Lua v1.0.886 by Oxide Team
    6:24 PM [Info] Loaded extension MySql v1.0.886 by Oxide Team
    6:24 PM [Info] Loaded extension Python v1.0.886 by Oxide Team
    6:24 PM [Info] Loaded extension RustLegacy v1.0.886 by Oxide Team
    6:24 PM [Info] Loaded extension SQLite v1.0.886 by Oxide Team
    6:24 PM [Info] Loaded extension Unity v1.0.886 by Oxide Team
    6:24 PM [Info] Loading plugins...
    6:24 PM [Info] Loaded plugin Rust Legacy Core v1.0.0 by Oxide Team
    6:24 PM [Info] Loaded plugin Unity Core v1.0.0 by Oxide Team
    6:25 PM [Info] Loaded plugin Compass v1.0.0 by Mughisi
    [Oxide] 10:02 PM [Debug] Plugin compilation is already queued: RemoverTool (823.139 ago)
     
    Last edited by a moderator: May 17, 2015
  2. Wulf

    Wulf Community Admin

    Did you check your compiler logs for errors? Also make sure you are using the Rust Legacy version of that plugin.
     
  3. The basic unmoded rust server is version 4.5.5.168641
    I can't find any specific compiler logs or at least I don't see any errors in any log files
    Just a thought ... are the compilers compatible with XP ?
     
  4. Wulf

    Wulf Community Admin

    The compiler logs are in the root directory, and they should work.
     
  5. I don't have any log files in the root directory and if I start CSharpCompiler.exe on its own it crashes with the message

    Application failed to initialize properly (0xc0000142)
     
  6. Wulf

    Wulf Community Admin

    Mmmm, I'll check with Nogrod and see if he has any idea.
    [DOUBLEPOST=1431971243,1431919868][/DOUBLEPOST]Please try the latest snapshot, it should fix your issue. :)

    https://github.com/OxideMod/Snapshots/raw/master/Oxide-RustLegacy.zip
     
  7. Thanks the cs module loads now on my XP Oxide 2 server :)

    Although I still get some errors when loading mods.

    I'm assuming its an error in the mods and nothing to do with the compiler because some load fine.
    Code:
    Server Initialized
    [Oxide] 1:00 PM [Error] RemoverTool plugin failed to compile!
    [Oxide] 1:00 PM [Error] RemoverTool.cs(20,25): error CS0433: The imported type `
    Oxide.Plugins.RustLegacyPlugin' is defined multiple times
    [Oxide] 1:01 PM [Info] PlayerList was compiled successfully in 543ms
    [Oxide] 1:01 PM [Info] Loaded plugin Player List v0.1.0 by Hatemail
    [Oxide] 1:01 PM [Info] VACKicker was compiled successfully in 316ms
    [Oxide] 1:01 PM [Info] Loaded plugin VACKicker v1.0.0 by Reneb
    [Oxide] 1:01 PM [Error] AntiGlitch plugin failed to compile!
    [Oxide] 1:01 PM [Error] AntiGlitch.cs(17,24): error CS0433: The imported type `
    Oxide.Plugins.RustLegacyPlugin' is defined multiple times
    [Oxide] 1:01 PM [Info] Loaded plugin Compass v1.0.0 by Mughisi
    [Oxide] 1:02 PM [Info] ResourceManager was compiled successfully in 308ms
    [Oxide] 1:02 PM [Info] Loaded plugin ResourceManager v1.0.2 by Reneb
    [Oxide] 1:02 PM [Info] 46 custom resource spawns where loaded!
    [Oxide] 1:02 PM [Warning] CallHook 'OnServerInitialized' on plugin 'ResourceMana
    ger' took: 2056ms
     
    Last edited by a moderator: May 19, 2015
  8. Wulf

    Wulf Community Admin

    Those plugins appear to be importing more than they should be, which is causing errors due to a recent namespace change. Try the attached ones below.
     

    Attached Files:

  9. Yes they work fine now, thanks :)
    I'll compare them to the old ones and edit the rest that are causing the errors.
    I'm not keen on updating my rented server unless I can get all the mods to work that I want on my own server.
    Thanks for your help
     
  10. Wulf

    Wulf Community Admin

    Basically if you get the errors you posted previously, just put the plugins on your local box, and remove the Oxide.Ext.RustLegacy or Oxide.RustLegacy portions at the top. Those are the old filename and namespace, and generally should not be used in the plugins anyways.
     
  11. I just edited AntiCheat.cs as you suggested and it works fine now :)