1. So I have just downloaded oxide 2, and added it to my server folder, I can see it loaded in console but when i use oxide.load to try load plugins I get no source found?
    I am using it like:
    "oxide.load DeathNotes.cs"

    Is that correct way?
     
  2. reload DeathNotes
    Make sure you upload oxide to the same folder RustDedicated.exe is overwriting all files
     
  3. Wulf

    Wulf Community Admin

    Plugins are also loaded automatically, you do not need to manually load them.
     
  4. Wait when I extract the oxide what goes where?
    I assumed that if it says in console that I placed them good, plugins didn't load automaticly so I'm doing something wrong
     
    Last edited by a moderator: Jan 30, 2016
  5. Wulf

    Wulf Community Admin

    Are you sure you have Oxide installed? You can check using the 'oxide.version' command, if it says "Command not found", then Oxide isn't installed.
     
  6. So I will just copy paste the console output:

    Code:
    > oxide.version
    [Oxide] 12:09 PM [Info] Oxide version: 2.0.1748, Rust version: 1348.113.1
    > reload DeathNotes
    [Oxide] 12:10 PM [Error] Failed to load plugin 'DeathNotes' (no source found)
    My guess is that I'm putting plugins on wrong place, thay are currently in "*/RustDedicated_Data\Plugins"
     
  7. Yeah, that's the wrong place to put them.
    One server can have multiple "identities". Each identity is a different setup for the same binary server files.
    The "server" directory in the main directory contains these identities. Most servers only have one identity
    because toggling identities is uncommon.
    Usually this identity is just called "my_server_identity" or whatever.
    ./server/<identity>/oxide contains the plugin configuration of this server identity.
    To add a plugin, copy the plugin to ./server/<identity/oxide/plugins.
    The plugin can be configured in oxide/config and the data of the plugin is contained in oxide/data.
     
  8. Yep that solved the problem, thank you :)