diff --git a/public/api/clientsettings/cappsettings.php b/public/api/clientsettings/cappsettings.php index 4659976..fd45e9e 100644 --- a/public/api/clientsettings/cappsettings.php +++ b/public/api/clientsettings/cappsettings.php @@ -814,7 +814,7 @@ header("Content-Type: application/json"); "DFFlagLuaGcPerVm": "True", "FFlagGraphicsGLDisableDiscard": "True", "FFlagStudioDeviceEmulationTouchInputFix": "True", - "FFlagTaskSchedulerCyclicExecutive": "True", + "FFlagTaskSchedulerCyclicExecutive": "False", "DFFlagMakeWebPendingFriendRequests": "True", "DFFlagGetLastestAssetVersionEnabled": "True", "FFlagHideDeprecatedEnums": "True", @@ -1025,7 +1025,7 @@ header("Content-Type: application/json"); "DFFlagFixShapeChangeBug": "True", "FFlagScriptAnalyzerFixLocalScope": "True", "FFlagRenderVRBBGUI": "True", - "FFlagRenderVR": "False", + "FFlagRenderVR": "True", "DFFlagNetworkFixJoinDataItemOrder": "True", "FFlagUseUserListMenu": "True", "FFlagStudioImproveModelDragFidelity": "True", @@ -1217,7 +1217,6 @@ header("Content-Type: application/json"); "FFlagSoundChannelMaxDistanceStopFMODChannel": "True", "FFlagRCCLoadFMOD": "True", "FFlagSoundChannelUseV2Implementation": "False", - "FFlagRenderSoftParticles": "True", "FFlagScriptContextSinglePendingThreadsQueue": "False", "DFIntTeleportExceptionInfluxHundredthsPercentage": "10000", "FIntStartupInfluxHundredthsPercentage": "100", diff --git a/public/api/versioncompatibility/allowedmd5hash.php b/public/api/versioncompatibility/allowedmd5hash.php index f6d4bc9..865603e 100644 --- a/public/api/versioncompatibility/allowedmd5hash.php +++ b/public/api/versioncompatibility/allowedmd5hash.php @@ -11,7 +11,7 @@ require $_SERVER["DOCUMENT_ROOT"] . "/../../../WebAssemblies/loader.php"; $page = new Platinus\API(); if(isset($_GET["apiKey"]) && $_GET["apiKey"]=="2b4ba7fc-5843-44cf-b107-ba22d3319dcd"){ - $page->RespondJSON(array("data"=>["61638c49f710802c55b1f24ebd28ea3c"])); + $page->RespondJSON(array("data"=>[md5(file_get_contents("D:\\2012lol\\platinus20162\\Release\\RobloxPlayerBeta.exe")),md5(file_get_contents("D:\\2012lol\\platinus20162\\Release\\RobloxPlayerBetaRaw.exe"))])); }else{ $page->InvokeError(403, "Unauthorized"); } diff --git a/public/assetgame/asset.php b/public/assetgame/asset.php index b02ded3..2209391 100644 --- a/public/assetgame/asset.php +++ b/public/assetgame/asset.php @@ -15,6 +15,8 @@ function isGetSet($needle) return isset($_GET[$needle]) && $_GET[$needle] == (int)$_GET[$needle]; } +file_put_contents("egg.txt", print_r($_SERVER, true)); + if(isGetSet("id")) { $url = "https://assetdelivery.roblox.com/v1/asset/?id=" . $_GET["id"];