1. Im trying to add a mod to my tcadmin to download the latest version everytime. I am using
    Code:
    rm -f RSM.zip
    wget https://oxidemod.org/resources/rust-server-manager.2494/download?version=15826
    unzip -o RSM.zip -A
    for now, however i know the version will change, will this affect the download? If so what is the correct link?
     
  2. Wulf

    Wulf Community Admin

    That link is for RustServerManager, not Oxide. Any download link here will be version-specific though and will only give you that specific version.

    For Oxide builds, see GitHub repository changes.
     
  3. Got it my friend.
    Code:
    rm -f Oxide-Rust.zip
    wget https://github.com/OxideMod/Oxide/releases/download/latest/Oxide-Rust.zip
    unzip -o Oxide-Rust.zip
    Figured out that other thing from yesterday too with the .dll's and extracting, i was missing a
    Code:
    -o
    in the command line. Its all well and good if you have the permissions but unless you tell it to overwrite the existing .dll's it will just plain fail.