mirror of
https://git.webmc.xyz/Starlike-Client/Starlike-Client
synced 2025-06-04 01:42:01 -09:00
25 lines
751 B
Plaintext
25 lines
751 B
Plaintext
"use strict";
|
|
${classes_js}
|
|
|
|
// %%%%%%%%% launch options %%%%%%%%%%%%
|
|
|
|
if(typeof window !== "undefined") {
|
|
window.eaglercraftXClientScriptElement = document.currentScript;
|
|
if(window.eaglercraftXOptsHints && window.eaglercraftXOptsHints.hintsVersion === 1) {
|
|
window.eaglercraftXOpts = window.eaglercraftXOptsHints;
|
|
}else {
|
|
var relayzId = Math.floor(Math.random() * 3);
|
|
window.eaglercraftXOpts = {
|
|
container: "game_frame",
|
|
enableSignatureBadge: true
|
|
};
|
|
}
|
|
window.addEventListener("load", function() {
|
|
main();
|
|
});
|
|
}
|
|
|
|
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
if(typeof window !== "undefined") { window.eaglercraftXOpts.enableSignatureBadge = true; window.eaglercraftXOpts.assetsURI = ${assets_epk}; main(); }
|