From 681abf052721ff447bfec2d15b3ed8594590b72d Mon Sep 17 00:00:00 2001 From: PrestonT500 Date: Mon, 28 Oct 2024 13:49:36 -0700 Subject: [PATCH] Added show modded checkbox and starlike client --- .../modded/1.8/Starlike_Client_Offline.html | 47795 ++++++++++++++++ index.html | 11 + js/showmodded.js | 21 + 3 files changed, 47827 insertions(+) create mode 100644 eagler-files/modded/1.8/Starlike_Client_Offline.html create mode 100644 js/showmodded.js diff --git a/eagler-files/modded/1.8/Starlike_Client_Offline.html b/eagler-files/modded/1.8/Starlike_Client_Offline.html new file mode 100644 index 0000000..35225f1 --- /dev/null +++ b/eagler-files/modded/1.8/Starlike_Client_Offline.html @@ -0,0 +1,47795 @@ + + + + + + + + + + + + + + + + + + + + + + + + +Starlike Client + + + + + + + + + + + +
+
+

This file is from 10/27/2024

+

Game will launch in 5...

+
+

+
+
+ + diff --git a/index.html b/index.html index 90cbc32..2c4fa38 100644 --- a/index.html +++ b/index.html @@ -15,6 +15,7 @@ +

Welcome to EaglerCraftX

@@ -33,6 +34,8 @@ Discord Server

Scroll down to the bottom for buttons/links.

Pick a Client:

+ +
@@ -66,6 +69,14 @@ +
+

Version 1.8 Modded Clients

+ +

Version 1.5.2

diff --git a/js/showmodded.js b/js/showmodded.js new file mode 100644 index 0000000..73bea34 --- /dev/null +++ b/js/showmodded.js @@ -0,0 +1,21 @@ +$(document).ready(function() { + function updateShowModded() { + var isChecked = $("#showModded").is(":checked"); + if (isChecked) { + $("#moddedButtons").show(); + } else { + $("#moddedButtons").hide(); + } + } + function updateButtons() { + $(".modded-buttons").each(function() { + var url = $(this).data("url"); + $(this).attr("href", url); + }); + } + $("#showModded").on("change", function() { + updateShowModded(); + updateButtons(); + }); + updateShowModded(); +}); \ No newline at end of file