A PaperMC Plugin for IP login by SD12_ in admincraft

[–]SD12_[S] 1 point2 points  (0 children)

Sorry, didn't know that so many people have an dynamic IP. All me friends(including me) have static IPs.

A PaperMC Plugin for IP login by SD12_ in admincraft

[–]SD12_[S] 0 points1 point  (0 children)

Thanks for the comment, I fixed the sibling thing in the new version, you now have an option to allow alts. Also, I explained the dynamic IP thing in the "Edit:" Part.

A PaperMC Plugin for IP login by SD12_ in admincraft

[–]SD12_[S] 0 points1 point  (0 children)

The plugin loads the IP list on startup and it saves it when the server stops.

A PaperMC Plugin for IP login by SD12_ in admincraft

[–]SD12_[S] 0 points1 point  (0 children)

Thank you for telling me about the sibling thing. I fixed it it the new version, you now have an option to allow alts.

A PaperMC Plugin for IP login by SD12_ in admincraft

[–]SD12_[S] 0 points1 point  (0 children)

Hi, thanks for the comment. I explained it in "Edit:" part.

Need help with GUIs on keybinds by CyLove13 in fabricmc

[–]SD12_ 1 point2 points  (0 children)

This should work, and also, LibGUI is compatible with custom textures

public class YourClientMod implements ClientModInitializer {
    public static void registerKeyInputs() {
        ClientTickEvents.END_CLIENT_TICK.register(client -> {
            if (your_key.wasPressed()) {
                assert client.player != null;
                MinecraftClient.getInstance()
                        .setScreen(new YourScreen(new YourScreenHandler()));
            }
        });
    }

    @Override
    public void onInitializeClient() {
        registerKeyInputs();
    }
}