This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [13:27:34] [main/INFO]: ModLauncher running: args [--username, RuN_Kino, --version, neoforge-21.1.61, --gameDir, C:\Users\gamew\curseforge\minecraft\Instances\All the Mods 10 - ATM10, --assetsDir, C:\Users\gamew\curseforge\minecraft\Install\assets, --assetIndex, 17, --uuid, ac8806d4146c4457bc4cb79f0f74f63c, --accessToken, ❄❄❄❄❄❄❄❄, --clientId, MzU4MGE2YzQtMGEzYS00MDEwLTk4MDItYTkxMzQ2MmU3ODQx, --xuid, 2533274956061484, --userType, msa, --versionType, release, --width, 1024, --height, 768, --quickPlayPath, C:\Users\gamew\curseforge\minecraft\Install\quickPlay\java\1727263642367.json, --fml.neoForgeVersion, 21.1.61, --fml.fmlVersion, 4.0.24, --fml.mcVersion, 1.21.1, --fml.neoFormVersion, 20240808.144430, --launchTarget, forgeclient] | |
| [13:27:34] [main/INFO]: JVM identified as Microsoft OpenJDK 64-Bit Server VM 21.0.3+9-LTS | |
| [13:27:34] [main/INFO]: ModLauncher 11.0.4+main.d2e20e43 starting: java version 21.0.3 by Microsoft; OS Windows 11 arch amd64 version 10.0 | |
| [13:27:35] [main/INFO]: Loading ImmediateWindowProvider |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3.7" | |
| volumes: | |
| steam: | |
| services: | |
| scorched: | |
| image: thmhoag/arkserver | |
| container_name: ark_scorched | |
| hostname: scorched |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| require($_SERVER['DOCUMENT_ROOT'].'/wp-load.php'); | |
| //require($_SERVER['DOCUMENT_ROOT'].'/wp-content/plugins/ultimate-member/core/um-user.php'); | |
| $blogusers = get_users('role=Administrator'); | |
| foreach ( $blogusers as $user ) { | |
| echo '<span>' . esc_html( $user->display_name ) . '</span><br/>'; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Here You can type your custom JavaScript... | |
| var url = window.location.href; // Returns full URL | |
| var lastRls = getCookie("last_release"); | |
| var site1Rls = getCookie("site1_release"); | |
| var newLastRls = lastRls; | |
| function setCookie(cname, cvalue, exdays) { | |
| var d = new Date(); | |
| d.setTime(d.getTime() + (exdays*24*60*60*1000)); | |
| var expires = "expires="+ d.toUTCString(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $file = file_get_contents("http://steamcommunity.com/sharedfiles/filedetails/?id=493980032"); | |
| $muster = '<a href="http:\/\/steamcommunity.com\/sharedfiles\/filedetails\/\?id=([0-9]+)">'; | |
| preg_match_all($muster, $file, $match); | |
| $arr = array_unique(array_values($match[1])); | |
| sort($arr); |