1. Code:
    webrequest.Enqueue(
        "http://example.com/?api=1" +
        "&player_steamid=" + Uri.EscapeDataString(ASteamId) +
        "&player_ip=" + Uri.EscapeDataString("") +
        "&ban_comment=" + Uri.EscapeDataString(AReason),
        null,
        (AStatusCode, AResponse) => BanPlayerResponse(AStatusCode, AResponse, APlayer, ASteamId, AReason),
        this,
        RequestMethod.GET,
        null,
        1500f
    );...void BanPlayerResponse(int AStatusCode, string AResponse, BasePlayer APlayer, string ASteamId, string AReason) {
        if(AStatusCode == 200) {
            ...
        } else {
            PrintWarning($"Status code: {AStatusCode}, {AResponse}");
        }
    }
    As result: Status code: 0, Error: ConnectFailure

    Oxide and server updated just now. Server on linux. Site worked and ping come from server console to site, all fine but function "webrequest.Enqueue" not worked. Can anyone help to solve this issue or this is oxide bug?
     
  2. Wulf

    Wulf Community Admin

    Which Oxide version are you using?
     
  3. Wulf

    Wulf Community Admin

  4. Loading Oxide Core v2.0.3849...
    Loading extensions...
    Latest compiler MD5: 8ce6d27e7718e3d164766bba8833537a
    Local compiler MD5: 8ce6d27e7718e3d164766bba8833537a
    Loaded extension CSharp v2.0.3892 by Oxide and Contributors
    Loaded extension MySql v2.0.3755 by Oxide and Contributors
    Loaded extension Rust v2.0.3983 by Oxide and Contributors
    Loaded extension SQLite v2.0.3754 by Oxide and Contributors
    Loaded extension Unity v2.0.3756 by Oxide and Contributors
    Using Covalence provider for game 'Rust'
    Loading plugins...
     
  5. Wulf

    Wulf Community Admin

    And what is the rest of the output and versions?
     
  6. Sorry, just edited, above.
     
  7. Wulf

    Wulf Community Admin

    Could you test using the below DLLs please? There will be some debug output in the console/logs about your IP addresses.
     

    Attached Files:

  8. Yes, 5 minutes please.
    [DOUBLEPOST=1530796578][/DOUBLEPOST]
    Code:
    using System;
    using System.Linq;
    using System.Data;
    using System.Reflection;
    using System.Collections.Generic;
    using Oxide.Core;
    using Oxide.Game.Rust;
    using Oxide.Game.Rust.Cui;
    using Oxide.Core.Plugins;
    using Oxide.Core.Libraries;
    using Oxide.Core.Configuration;
    using Rust;
    using UnityEngine;
    using Newtonsoft.Json;namespace Oxide.Plugins {
        [Info("A000FastApiTest", "Zombak", "0.0.1")]
        [Description("Test plugin")]
        class A000FastApiTest : RustPlugin {
            
            void OnServerInitialized() {
                webrequest.Enqueue(
                    "http://google.com/?api=1" +
                    "&player_steamid=" + Uri.EscapeDataString("STEAMID") +
                    "&player_ip=" + Uri.EscapeDataString("PLAYER_IP") +
                    "&ban_comment=" + Uri.EscapeDataString("SOME_REASON"),
                    null,
                    (AStatusCode, AResponse) => BanPlayerResponse(AStatusCode, AResponse, null, "STEAMID", "SOME_REASON"),
                    this,
                    RequestMethod.GET,
                    null,
                    1500f
                );
            }
            
            void BanPlayerResponse(int AStatusCode, string AResponse, BasePlayer APlayer, string ASteamId, string AReason) {
                if(AStatusCode == 200) {
                    PrintWarning("All ok!");
                } else {
                    PrintWarning($"Status code: {AStatusCode}, {AResponse}");
                }
            }
            
        }
    }
    New test plugin.

    Loaded plugin A000FastApiTest v0.0.1 by Zombak
    [A000FastApiTest] Status code: 0, Error: ConnectFailure

    All hard, all plugins works together... Gamelog in private messages. With new DLLs callbacks and hooks not works. If you need access to server, just say.
    [DOUBLEPOST=1530796792][/DOUBLEPOST]Dear Wulf, got this error on site:

    The following error occurred:
    Participants:
    You may not start a conversation with the following recipients: Wulf.
    [DOUBLEPOST=1530796952][/DOUBLEPOST]
    Nothing new in console about IP.
     
  9. Wulf

    Wulf Community Admin

    If you installed the DLLs provided, there would be output about the IP addresses when you use web requests.
     
  10. DLLs are already replaced. Nothing new is happening.

    Code:
    A000FastApiTest was compiled successfully in 2990ms
    Unloaded plugin A000FastApiTest v0.0.1 by Zombak
    Loaded plugin A000FastApiTest v0.0.1 by Zombak
    [A000FastApiTest] Status code: 0, Error: ConnectFailure
     
  11. Wulf

    Wulf Community Admin

    What does the version show for Oxide.Core and Oxide.Rust?
     
  12. Loading Oxide Core v2.0.0...
    Loading extensions...
    Latest compiler MD5: 8ce6d27e7718e3d164766bba8833537a
    Local compiler MD5: 8ce6d27e7718e3d164766bba8833537a
    Loaded extension CSharp v2.0.3892 by Oxide and Contributors
    Loaded extension MySql v2.0.3755 by Oxide and Contributors
    Loaded extension Rust v2.0.0 by Oxide and Contributors
    Loaded extension SQLite v2.0.3754 by Oxide and Contributors
    Loaded extension Unity v2.0.3756 by Oxide and Contributors
    Using Covalence provider for game 'Rust'
    Loading plugins...
    Loaded plugin Rust v2.0.0 by Oxide and Contributors
    Loaded plugin Unity v2.0.3756 by Oxide and Contributors
     
  13. Wulf

    Wulf Community Admin

    Every webrequest you run should output the following warnings:

    Interface.Oxide.LogWarning($"Local IP address: {Utility.GetLocalIP()}");
    Interface.Oxide.LogWarning($"Covalence IP address: {covalence.Server.Address}");
     
  14. Need to enable server debugging?
     
  15. Wulf

    Wulf Community Admin

    No, the DLLs I provided are debug builds.
     
  16. Nothing new is happening.

    Code:
    Set current directory to /home/steam/rust/server
    Found path: /home/steam/rust/server/RustDedicated
    Mono path[0] = '/home/steam/rust/server/RustDedicated_Data/Managed'
    Mono config path = '/home/steam/rust/server/RustDedicated_Data/MonoBleedingEdge/etc'
    Preloaded 'libRakNet.so'
    Preloaded 'libRustNative.so'
    Preloaded 'libeac_server.so'
    Preloaded 'libeasyanticheat.so'
    Preloaded 'libsteam_api64.so'
    Preloaded 'steamclient.so'
    Unable to preload the following plugins:
        libRenderer.so
        libRustNative.so
        libRenderer.so
    Initialize engine version: 2018.1.0f2 (d4d99f31acba)
    Forcing GfxDevice: Null
    GfxDevice: creating device client; threaded=0
    NullGfxDevice:
        Version:  NULL 1.0 [1.0]
        Renderer: Null Device
        Vendor:   Unity Technologies
    Begin MonoManager ReloadAssembly
    - Completed reload, in  0.059 seconds
    WARNING: Shader Unsupported: 'Hidden/Internal-ScreenSpaceShadows' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-ScreenSpaceShadows' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal' - Setting to default shader.
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal (Specular setup)' - Setting to default shader.
    UnloadTime: 0.574000 ms
    Bootstrap Startup
    System
        Name: machine7
        OS:   Linux 4.9 Debian 9.4 64bitCPU
        Model:  Intel Core Processor (Skylake)
        Cores:  1
        Memory: 7988 MBGPU
        Model:  Null Device
        API:    NULL 1.0 [1.0]
        Memory: 128 MB
        SM:     30Process
        Memory:   0 MBMono
        Collects: 14
        Memory:   0 MBManifest Metadata Loaded
        11426 pooled strings
        13 mesh colliders
        5133 prefab properties
        388 effect categories
        558 entity names
        86 skinnable names
    Command Line: "./RustDedicated" "-batchmode" "-nographics" "+server.ip" "REAL_SERVER_IP_REMOVED" "+server.port" "28015" "+server.tickrate" "10" "+server.hostname" ""HOST NAME"" "+server.identity" ""server_ident"" "+server.seed" "43452" "+server.maxplayers" "10" "+server.worldsize" "1000" "+server.saveinterval" "100" "+rcon.ip" "REAL_SERVER_IP_REMOVED" "+rcon.port" "29015" "+rcon.password" ""***************************"" "+rcon.web" "1" "-logfile" "gamelog.txt" "+squadmanager.squad_disable" "false" "--debug"
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/libkernel32
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/libkernel32.so
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/kernel32
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/libkernel32
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/libkernel32.so
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/libkernel32
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0xdb2dc90.so
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0xdbcd770.so
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0xdbf83a0.so
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0xdbedd20.so
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0xdc5f6a0.so
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0xe4a0020.so
    [Manifest] URI IS "https://api.facepunch.com/api/public/manifest/?public_key=j0VF6sNnzn9rwt9qTZtI02zTYK8PRdN1"Server Config Loaded
    Running server/server_ident/cfg/users.cfgManifest Assets Loaded
        86 skinnable objects
    Unloading 6 Unused Serialized files (Serialized files now loaded: 64)
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/Waveform' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/Waveform' - Setting to default shader.
    WARNING: Shader Unsupported: 'Rust/Standard Terrain BaseMap' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Terrain BaseMap' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Terrain BaseMap' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/LightMeter' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/LightMeter' - Setting to default shader.
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/Histogram' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/Histogram' - Setting to default shader.
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/Vectorscope' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/Vectorscope' - Setting to default shader.
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/FinalPass' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/MultiScaleVO' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/PostProcessing/MultiScaleVO' - Setting to default shader.
    WARNING: Shader Unsupported: 'Rust/Standard Terrain' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Terrain' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Terrain' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Terrain' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Terrain' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/ScreenSpaceReflections' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/PostProcessing/ScreenSpaceReflections' - Setting to default shader.
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/DepthOfField' - Pass 'COC CALCULATION' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/DepthOfField' - Pass 'COC CALCULATION' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/PostProcessing/DepthOfField' - Setting to default shader.
    UnloadTime: 5.522000 ms
    [CoverageQueries] Disabled due to unsupported Async GPU Reads on device Null[CustomProbe] Initialization failed. No cubemap ortho basis defined for NullFloating point textures aren't supported on this device (Main Camera (UnityStandardAssets.CinematicEffects.TonemappingColorGrading))Plugins: Couldn't open /home/steam/rust/server/RustDedicated_Data/Plugins/x86_64/libRenderer.so, error: /home/steam/rust/server/RustDedicated_Data/Plugins/x86_64/libRenderer.so: undefined symbol: glXGetProcAddressARBFallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/libRenderer
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/libRenderer.so
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/Renderer
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/libRenderer
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/libRenderer.so
    Fallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/libRendererUnloading 7841 unused Assets to reduce memory usage. Loaded Objects now: 30896.
    Total: 205.284000 ms (FindLiveObjects: 7.481000 ms CreateObjectMapping: 8.797000 ms MarkObjects: 178.388000 ms  DeleteObjects: 10.618000 ms)Loading Oxide Core v2.0.0...Loading extensions...Latest compiler MD5: 8ce6d27e7718e3d164766bba8833537aLocal compiler MD5: 8ce6d27e7718e3d164766bba8833537aLoaded extension CSharp v2.0.3892 by Oxide and ContributorsLoaded extension MySql v2.0.3755 by Oxide and ContributorsLoaded extension Rust v2.0.0 by Oxide and ContributorsLoaded extension SQLite v2.0.3754 by Oxide and ContributorsLoaded extension Unity v2.0.3756 by Oxide and ContributorsUsing Covalence provider for game 'Rust'Loading plugins...Loaded plugin Rust v2.0.0 by Oxide and ContributorsLoaded plugin Unity v2.0.3756 by Oxide and ContributorsAdded '// Reference: System.Drawing' in plugin 'A000FastMap'A000Fast000, A000Fast0AdminUtils, A000Fast0PlayerNamePrefix, A000Fast0ScreenMsgRight, A000Fast0ZLibrary, A000Fast1ChatFlood, A000Fast1Friends, A000Fast1TeleportUtils, A000FastAdminClear, A000FastAdminDrink, A000FastAdminEat, A000FastAdminGod, A000FastAdminHammer, A000FastAdminHp, A000FastAdminLootProtection, A000FastAdminMasterKey, A000FastAdminMetabolism, A000FastAdminModers, A000FastAdminNoTarget, A000FastAdminPower, A000FastAdminRadar, A000FastAdminTp, A000FastApiBans, A000FastApiKits, A000FastApiMsgs, A000FastApiOnPlayerInit, A000FastApiRaids, A000FastApiServerOnline, A000FastApiStore, A000FastApiTest, A000FastApiVipSteamGroup, A000FastAutoDoors, A000FastAutoGrades, A000FastBackpacks, A000FastBlueSuite, A000FastCar, A000FastCombatBlock, A000FastFriendlyFire, A000FastFurnaceSplitter, A000FastFxDeathSound, A000FastHookDayNight, A000FastItemBlocker, A000FastMap, A000FastMapGenerator, A000FastMedicalSyringe, A000FastMsgAdminFromConsole, A000FastMsgAirdropLooting, A000FastMsgBradleyDeath, A000FastMsgCh47Death, A000FastMsgChatPrefix, A000FastMsgConnectDisconnect, A000FastMsgDayNight, A000FastMsgHelicopterDeath, A000FastMsgNoGive, A000FastMsgPlayerDeath, A000FastMute, A000FastNoKills, A000FastNoLoot, A000FastNoRaids, A000FastOil, A000FastProtectDevServer, A000FastQuickBarrels, A000FastQuickCraft, A000FastRadiation, A000FastRaidBlock, A000FastRecycler, A000FastRemoveTool, A000FastResourceGathering, A000FastSkins, A000FastStackSize, A000FastStartupLoot, A000FastTeleportHome, A000FastTeleportPlayer, A000FastTrade, A000FastTurretDamage, A000FastZZZ and Vanish were compiled successfully in 2683msGroup 'admin' already existsGroup 'fmoder' already existsGroup 'vip' already existsGroup 'god' already existsGroup 'InSteamGroup' already existsLoaded plugin A000Fast000 v0.0.3 by ZombakLoaded plugin A000Fast0AdminUtils v0.0.1 by ZombakLoaded plugin A000Fast0PlayerNamePrefix v0.0.1 by ZombakLoaded plugin A000Fast0ScreenMsgRight v0.0.1 by ZombakLoaded plugin A000Fast0ZLibrary v0.0.1 by ZombakLoaded plugin A000Fast1ChatFlood v0.0.2 by ZombakLoaded plugin A000Fast1Friends v0.0.1 by ZombakLoaded plugin A000Fast1TeleportUtils v0.0.1 by ZombakLoaded plugin A000FastAdminClear v0.0.3 by ZombakLoaded plugin A000FastAdminDrink v0.0.2 by ZombakLoaded plugin A000FastAdminEat v0.0.3 by ZombakLoaded plugin A000FastAdminGod v0.0.3 by ZombakLoaded plugin A000FastAdminHammer v0.0.2 by ZombakLoaded plugin A000FastAdminHp v0.0.3 by ZombakLoaded plugin A000FastAdminLootProtection v0.0.2 by ZombakLoaded plugin A000FastAdminMasterKey v0.0.2 by ZombakLoaded plugin A000FastAdminMetabolism v0.0.1 by ZombakLoaded plugin A000FastAdminModers v0.0.1 by ZombakLoaded plugin A000FastAdminNoTarget v0.0.3 by ZombakLoaded plugin A000FastAdminPower v0.0.2 by ZombakLoaded plugin A000FastAdminRadar v0.0.1 by ZombakLoaded plugin A000FastAdminTp v0.0.1 by ZombakLoaded plugin A000FastApiBans v0.0.1 by ZombakLoaded plugin A000FastApiKits v0.0.2 by ZombakLoaded plugin A000FastApiMsgs v0.0.1 by ZombakLoaded plugin A000FastApiOnPlayerInit v0.0.1 by ZombakLoaded plugin A000FastApiRaids v0.0.1 by ZombakLoaded plugin A000FastApiServerOnline v0.0.1 by ZombakLoaded plugin A000FastApiStore v0.0.3 by ZombakLoaded plugin A000FastApiTest v0.0.1 by ZombakLoaded plugin A000FastApiVipSteamGroup v0.0.1 by ZombakLoaded plugin A000FastAutoDoors v0.0.1 by ZombakLoaded plugin A000FastAutoGrades v0.0.1 by ZombakLoaded plugin A000FastBackpacks v0.0.1 by ZombakLoaded plugin A000FastBlueSuite v0.0.1 by ZombakLoaded plugin A000FastCar v0.0.1 by ZombakLoaded plugin A000FastCombatBlock v0.0.1 by ZombakLoaded plugin A000FastFriendlyFire v0.0.1 by ZombakLoaded plugin A000FastFurnaceSplitter v2.1.7 by SkipcastLoaded plugin A000FastFxDeathSound v0.0.2 by ZombakLoaded plugin A000FastHookDayNight v0.0.1 by ZombakLoaded plugin A000FastItemBlocker v0.0.1 by ZombakLoaded plugin A000FastMap v0.0.1 by ZombakLoaded plugin A000FastMapGenerator v0.0.1 by ZombakLoaded plugin A000FastMedicalSyringe v0.0.5 by ZombakLoaded plugin A000FastMsgAdminFromConsole v0.0.1 by ZombakLoaded plugin A000FastMsgAirdropLooting v0.0.1 by ZombakLoaded plugin A000FastMsgBradleyDeath v0.0.1 by ZombakLoaded plugin A000FastMsgCh47Death v0.0.1 by ZombakLoaded plugin A000FastMsgChatPrefix v0.0.2 by ZombakLoaded plugin A000FastMsgConnectDisconnect v0.0.6 by ZombakLoaded plugin A000FastMsgDayNight v0.0.1 by ZombakLoaded plugin A000FastMsgHelicopterDeath v0.0.1 by ZombakLoaded plugin A000FastMsgNoGive v0.0.2 by ZombakLoaded plugin A000FastMsgPlayerDeath v0.0.2 by ZombakLoaded plugin A000FastMute v0.0.1 by ZombakLoaded plugin A000FastNoKills v0.0.1 by ZombakLoaded plugin A000FastNoLoot v0.0.1 by ZombakLoaded plugin A000FastNoRaids v0.0.1 by ZombakLoaded plugin A000FastOil v0.0.1 by ZombakLoaded plugin A000FastProtectDevServer v0.0.1 by ZombakLoaded plugin A000FastQuickBarrels v0.0.2 by ZombakLoaded plugin A000FastQuickCraft v0.0.2 by ZombakLoaded plugin A000FastRadiation v0.0.1 by ZombakLoaded plugin A000FastRaidBlock v0.0.2 by ZombakLoaded plugin A000FastRecycler v0.0.1 by ZombakLoaded plugin A000FastRemoveTool v0.0.2 by ZombakLoaded plugin A000FastResourceGathering v0.0.4 by ZombakLoaded plugin A000FastSkins v0.0.1 by ZombakLoaded plugin A000FastStackSize v0.0.4 by ZombakLoaded plugin A000FastStartupLoot v0.0.2 by ZombakLoaded plugin A000FastTeleportHome v0.0.4 by ZombakLoaded plugin A000FastTeleportPlayer v0.0.1 by ZombakLoaded plugin A000FastTrade v0.0.1 by ZombakLoaded plugin A000FastTurretDamage v0.0.1 by ZombakLoaded plugin A000FastZZZ v0.0.1 by ZombakLoaded plugin Vanish v0.5.8 by Wulf/lukespraggAsset Warmup (1/2827)
    WARNING: Shader Unsupported: 'Rust/Standard Terrain Blend (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Terrain Blend (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Terrain Blend (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Terrain Blend (Specular setup)' - All passes removed
    Asset Warmup (97/2827)
    Asset Warmup (221/2827)
    WARNING: Shader Unsupported: 'Rust/Standard Blend 4-Way' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Blend 4-Way' - All passes removed
    Asset Warmup (317/2827)
    Asset Warmup (456/2827)
    Asset Warmup (901/2827)
    WARNING: Shader Unsupported: 'Rust/Standard Terrain Blend (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Terrain Blend (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Terrain Blend (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Terrain Blend (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Blend 4-Way' - All passes removed
    WARNING: Shader Unsupported: 'Rust/Standard Blend 4-Way' - All passes removed
    Asset Warmup (1128/2827)
    Asset Warmup (1364/2827)
    Asset Warmup (1460/2827)
    Asset Warmup (1769/2827)
    Asset Warmup (1864/2827)
    Asset Warmup (1888/2827)
    Asset Warmup (1935/2827)
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/Vectorscope' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/Vectorscope' - Setting to default shader.
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/FinalPass' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/Histogram' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/Histogram' - Setting to default shader.
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/MultiScaleVO' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/PostProcessing/MultiScaleVO' - Setting to default shader.
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/DepthOfField' - Pass 'COC CALCULATION' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/DepthOfField' - Pass 'COC CALCULATION' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/PostProcessing/DepthOfField' - Setting to default shader.
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/Waveform' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/Waveform' - Setting to default shader.
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/ScreenSpaceReflections' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/PostProcessing/ScreenSpaceReflections' - Setting to default shader.
    WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/LightMeter' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/PostProcessing/Debug/LightMeter' - Setting to default shader.
    Asset Warmup (2111/2827)
    Asset Warmup (2248/2827)
    Asset Warmup (2598/2827)
    Asset Warmup (2809/2827)
    Asset Warmup (2827/2827)
    WebSocket RCon Started on 29015Generating procedural map of size 1000 with seed 43452Shader 'Nature/Terrain/Diffuse': dependency 'AddPassShader' shader 'Hidden/TerrainEngine/Splatmap/Diffuse-AddPass' not found
    Shader 'Hidden/TerrainEngine/Splatmap/Standard-AddPass': fallback shader 'Hidden/TerrainEngine/Splatmap/Diffuse-AddPass' not found
    Starting Navmesh Source Collecting.Calling CollectSourcesAsync took 0.6554642Starting Navmesh Build with 1005 sources27%36%37%45%53%61%100%Navmesh Build took 2.01 secondsMap Spawned 2 entities
    Destroying 2 old entities
        done.
    Spawning 310 entities
        done.
    Enforcing SpawnPopulation Limits
        done.
    Initializing 408 entity links
        done.
    Initializing 310 entity save caches
        done.
    Facepunch.Steamworks Unity: LinuxPlayer
    Facepunch.Steamworks Os: Linux
    Facepunch.Steamworks Arch: x64
    Connected to Steam
    IP address from command-line: REAL_SERVER_IP_REMOVEDServer startup complete
    [A000Fast0ScreenMsgRight] OK[A000Fast000] OK[A000Fast1ChatFlood] OK[A000Fast1Friends] OK[A000Fast1TeleportUtils] OK[A000FastAdminClear] OK[A000FastAdminDrink] OK[A000FastAdminEat] OK[A000FastAdminGod] OK[A000FastAdminHammer] OK[A000FastAdminHp] OK[A000FastAdminLootProtection] OK[A000FastAdminMasterKey] OK[A000FastAdminMetabolism] OK[A000FastAdminModers] OK[A000FastAdminNoTarget] OK[A000FastAdminPower] OK[A000FastAdminRadar] OK[A000FastAdminTp] OK[A000FastApiBans] OK[A000FastApiKits] OK[A000FastApiMsgs] OK[A000FastApiOnPlayerInit] OK[A000FastApiRaids] OK[A000FastApiServerOnline] OK[A000FastApiStore] OK[A000FastApiServerOnline] Status code: 0, Error: ConnectFailure[A000FastApiVipSteamGroup] OK[A000FastAutoDoors] OK[A000FastAutoGrades] OK[A000FastBackpacks] OK[A000FastBlueSuite] OK[A000FastCar] OK[A000FastCombatBlock] OK[A000FastFriendlyFire] OK[A000FastFurnaceSplitter] OK[A000FastFxDeathSound] OK[A000FastHookDayNight] OK[A000FastItemBlocker] OK[A000Fast0ZLibrary] [A000FastMap] [05.07.2018 / 18:48:28] MAP URL: http://example.com/api.map/procedural_map_43452_1000_2094.164.1.jpg[A000FastMap] OK[A000FastMapGenerator] OK[A000FastMedicalSyringe] OK[A000FastMsgAdminFromConsole] OK[A000FastMsgAirdropLooting] OK[A000FastMsgBradleyDeath] OK[A000FastMsgCh47Death] OK[A000FastMsgChatPrefix] OK[A000FastMsgConnectDisconnect] OK[A000FastMsgDayNight] OK[A000FastMsgHelicopterDeath] OK[A000FastMsgNoGive] OK[A000FastMsgPlayerDeath] OK[A000FastMute] OK[A000FastNoKills] This plugin can't work on this server![A000FastNoLoot] OK[A000FastNoRaids] This plugin can't work on this server![A000FastOil] OK[A000FastProtectDevServer] OK[A000FastQuickBarrels] OK[A000FastQuickCraft] OK[A000FastRadiation] OK[A000FastRaidBlock] OK[A000FastRecycler] OK[A000FastRemoveTool] OK[A000FastResourceGathering] OK[A000FastSkins] OK[A000FastStackSize] OK[A000FastStartupLoot] OK[A000FastTeleportHome] OK[A000FastTeleportPlayer] OK[A000FastTrade] OK[A000FastTurretDamage] This plugin can't work on this server![A000FastZZZ] OKNullReferenceException: Object reference not set to an instance of an object.
      at Oxide.Plugins.A000FastMap.Format (System.String value, System.Object[] args) [0x00022] in <4dd875d239c94432ac07ae63d130b97b>:0
      at Oxide.Plugins.A000FastMap+<LoadImages>c__Iterator1.MoveNext () [0x00168] in <4dd875d239c94432ac07ae63d130b97b>:0
      at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00027] in <a43623b79c2a4a1db09c4f93ef7196a6>:0Invalidate Network Cache took 0.00 secondsSaved 310 ents, cache(0.00), write(0.00), disk(0.00).Saving completeA000Fast0ZLibrary was compiled successfully in 439msUnloaded plugin A000Fast0ZLibrary v0.0.1 by ZombakFallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0x36f17400.so
    Loaded plugin A000Fast0ZLibrary v0.0.1 by ZombakA000Fast0ScreenMsgRight was compiled successfully in 653msUnloaded plugin A000Fast0ScreenMsgRight v0.0.1 by ZombakFallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0x3502ec80.so
    Loaded plugin A000Fast0ScreenMsgRight v0.0.1 by ZombakA000FastAutoGrades and A000FastCombatBlock were compiled successfully in 850msUnloaded plugin A000FastAutoGrades v0.0.1 by ZombakUnloaded plugin A000FastCombatBlock v0.0.1 by ZombakFallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0x3503b170.so
    Loaded plugin A000FastAutoGrades v0.0.1 by ZombakLoaded plugin A000FastCombatBlock v0.0.1 by ZombakA000FastHookDayNight was compiled successfully in 1063msUnloaded plugin A000FastHookDayNight v0.0.1 by ZombakFallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0x34f223a0.so
    Loaded plugin A000FastHookDayNight v0.0.1 by ZombakA000FastMute and A000FastRaidBlock were compiled successfully in 1163msUnloaded plugin A000FastMute v0.0.1 by ZombakUnloaded plugin A000FastRaidBlock v0.0.2 by ZombakFallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0x34f06780.so
    Calling 'OnServerInitialized' on 'A000FastMute v0.0.1' took 101ms [GARBAGE COLLECT]Loaded plugin A000FastMute v0.0.1 by ZombakLoaded plugin A000FastRaidBlock v0.0.2 by ZombakA000FastRemoveTool was compiled successfully in 1390msUnloaded plugin A000FastRemoveTool v0.0.2 by ZombakFallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0x34f36ea0.so
    Loaded plugin A000FastRemoveTool v0.0.2 by ZombakA000FastTeleportPlayer was compiled successfully in 1543msUnloaded plugin A000FastTeleportPlayer v0.0.1 by ZombakFallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0x34ff8960.so
    Loaded plugin A000FastTeleportPlayer v0.0.1 by ZombakA000FastTrade was compiled successfully in 1750msUnloaded plugin A000FastTrade v0.0.1 by ZombakFallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0x35017ab0.so
    Loaded plugin A000FastTrade v0.0.1 by Zombak[A000Fast0ScreenMsgRight] OK[A000FastAutoGrades] OK[A000FastCombatBlock] OK[A000FastHookDayNight] OK[A000FastMute] OK[A000FastRaidBlock] OK[A000FastRemoveTool] OK[A000FastTeleportPlayer] OK[A000FastTrade] OKA000FastApiTest was compiled successfully in 346msUnloaded plugin A000FastApiTest v0.0.1 by ZombakFallback handler could not load library /home/steam/rust/server/RustDedicated_Data/Mono/data-0x35123d40.so
    Loaded plugin A000FastApiTest v0.0.1 by Zombak
    [A000FastApiTest] Status code: 0, Error: ConnectFailure
     
  17. Wulf

    Wulf Community Admin

    This is what you'd see with the DLLs (minus the DevTest and command usage, this are just showing it works):
    [​IMG]

    Attached the DLLs I used, but keep in mind that these are for the staging branch now as the Rust update is about to hit.
     
  18. DLLs are replaced.

    Code:
    $ ./run.sh
    Log file rotaded!
    Start server...eac_server.so [x64] :: OnLoad()
    Could not load signature of AmbienceEmitter:get_currentTopology due to: Could not load file or assembly 'Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. assembly:Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null type:<unknown type> member:(null) signature:<none>
    Could not load signature of AmbienceEmitter:set_currentTopology due to: Could not load file or assembly 'Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. assembly:Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null type:<unknown type> member:(null) signature:<none>
    Could not load signature of AmbienceEmitter:get_currentBiome due to: Could not load file or assembly 'Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. assembly:Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null type:<unknown type> member:(null) signature:<none>
    Could not load signature of AmbienceEmitter:set_currentBiome due to: Could not load file or assembly 'Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. assembly:Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null type:<unknown type> member:(null) signature:<none>
    Could not load signature of AmbienceEmitter:get_currentTopology due to: Could not load file or assembly 'Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. assembly:Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null type:<unknown type> member:(null) signature:<none>
    Could not load signature of AmbienceEmitter:set_currentTopology due to: Could not load file or assembly 'Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. assembly:Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null type:<unknown type> member:(null) signature:<none>
    Could not load signature of AmbienceEmitter:get_currentBiome due to: Could not load file or assembly 'Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. assembly:Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null type:<unknown type> member:(null) signature:<none>
    Could not load signature of AmbienceEmitter:set_currentBiome due to: Could not load file or assembly 'Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. assembly:Rust.World, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null type:<unknown type> member:(null) signature:<none>
    Log file:
    Code:
    Set current directory to /home/steam/rust/server
    Found path: /home/steam/rust/server/RustDedicated
    Mono path[0] = '/home/steam/rust/server/RustDedicated_Data/Managed'
    Mono config path = '/home/steam/rust/server/RustDedicated_Data/MonoBleedingEdge/etc'
    Preloaded 'libRakNet.so'
    Preloaded 'libRustNative.so'
    Preloaded 'libeac_server.so'
    Preloaded 'libeasyanticheat.so'
    Preloaded 'libsteam_api64.so'
    Preloaded 'steamclient.so'
    Unable to preload the following plugins:
        libRenderer.so
        libRustNative.so
        libRenderer.so
    Initialize engine version: 2018.1.0f2 (d4d99f31acba)
    Forcing GfxDevice: Null
    GfxDevice: creating device client; threaded=0
    NullGfxDevice:
        Version:  NULL 1.0 [1.0]
        Renderer: Null Device
        Vendor:   Unity Technologies
    Begin MonoManager ReloadAssembly
    - Completed reload, in  0.062 seconds
    WARNING: Shader Unsupported: 'Hidden/Internal-ScreenSpaceShadows' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-ScreenSpaceShadows' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal' - Setting to default shader.
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal (Specular setup)' - All passes removed
    WARNING: Shader Unsupported: 'Hidden/Rust/Standard Decal (Specular setup)' - Setting to default shader.
    UnloadTime: 0.527000 ms
    FileNotFoundException: Could not load file or assembly 'NewAssembly, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies.
      at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00027] in <a43623b79c2a4a1db09c4f93ef7196a6>:0
     
    (Filename: <a43623b79c2a4a1db09c4f93ef7196a6> Line: 0)
    And server die...
     
  19. Wulf

    Wulf Community Admin

    You'd have to be on the staging branch of the game.