1010101110-serverblankpassword icon

serverblankpassword

This mod is a small change to allow servers to have a blank password.

Last updated 3 years ago
Total downloads 1566
Total rating 3 
Categories
Dependency string 1010101110-serverblankpassword-0.0.2
Dependants 7 other packages depend on this package

This mod requires the following mods to function

denikson-BepInExPack_Valheim-5.4.602 icon
denikson-BepInExPack_Valheim

BepInEx pack for Valheim. Preconfigured and includes unstripped Unity DLLs.

Preferred version: 5.4.602

README

server blank passwords

This mod allows public servers to have a blank password. This makes it so users skip the password entry dialog and make it into game faster.

I would only recommend this for servers that have whitelisting. Otherwise you are opening wide your public server for greifers.

If you are already specifically whitelisting people, why make them enter a password as well...?

install mod

have bepinex installed on your server

download then drop the .dll file into your \BepInEx\plugins folder

how to remove password

in your server start script where you have the -password "" just remove it

#start_server_bepinex.sh
./valheim_server.x86_64 -name "My server" -port 2456 -world "Dedicated" ##remove this##-password "secret"##remove this##

code

//server allow blank passwords
[HarmonyPatch(typeof(FejdStartup), "IsPublicPasswordValid")]
public static class Passwordfix
{
    private static bool Prefix(string password, World world, ref bool __result, FejdStartup __instance)
    {
        __result = true;
        return false;
    }
}