1. Hello i'm getting this error with latest oxide:

    Code:
    error CS0246: The type or namespace name `Ext' could not be found. Are you missing an assembly reference?
    Whats wrong with this code now? It was working fine before. How now correct to do such thing?

    Code:
    private Ext.MySql.Libraries.MySql mysql = Interface.Oxide.GetLibrary<Ext.MySql.Libraries.MySql>("MySql");
    [DOUBLEPOST=1433496471][/DOUBLEPOST]It seems like i "fixed" it by "using Oxide.Ext.MySql.Libraries;", this wasn't needed before...
     
  2. Oxide. Ext. Rust was changed to oxide. Game. Rust that is a what happened. You just needed to add the correct namespace or like you did by using a fully qualified name.
     
  3. Ah, this makes sense, because rust is not ext anymore plugins don't have Ext namespace by default, so must using Oxide.Ext.MySql.Libraries or so.