Beispiel #1
0
 public bool CheckDependencies()
 {
     return(CoreConfig.GetInstance().GetBoolValue("javascript", "enabled") &&
            File.Exists(Path.Combine(Path.Combine(Util.GetServerFolder(), "Managed"), "Jint.dll")));
 }
Beispiel #2
0
 public bool CheckDependencies()
 {
     return(CoreConfig.GetInstance().GetBoolValue("python", "enabled") &&
            File.Exists(Path.Combine(Path.Combine(Util.GetServerFolder(), "Managed"), "IronPython.Deps.dll")));
 }
 public bool CheckDependencies()
 {
     return(CoreConfig.GetInstance().GetBoolValue("php", "enabled") &&
            File.Exists(Path.Combine(Path.Combine(Util.GetServerFolder(), "Managed"), "PhpNetCore.dll")) &&
            File.Exists(Path.Combine(Path.Combine(Util.GetServerFolder(), "Managed"), "PhpNetClassLibrary.dll")));
 }
 public bool CheckDependencies()
 {
     return(CoreConfig.GetInstance().GetBoolValue("lua", "enabled") &&
            File.Exists(Path.Combine(Path.Combine(Util.GetServerFolder(), "Managed"), "MoonSharp.Interpreter.dll")));
 }
 public bool CheckDependencies()
 {
     return(CoreConfig.GetInstance().GetBoolValue("csharp", "enabled"));
 }