parent
53feb0c2c1
commit
7842b100ef
|
|
@ -814,7 +814,7 @@ header("Content-Type: application/json");
|
||||||
"DFFlagLuaGcPerVm": "True",
|
"DFFlagLuaGcPerVm": "True",
|
||||||
"FFlagGraphicsGLDisableDiscard": "True",
|
"FFlagGraphicsGLDisableDiscard": "True",
|
||||||
"FFlagStudioDeviceEmulationTouchInputFix": "True",
|
"FFlagStudioDeviceEmulationTouchInputFix": "True",
|
||||||
"FFlagTaskSchedulerCyclicExecutive": "True",
|
"FFlagTaskSchedulerCyclicExecutive": "False",
|
||||||
"DFFlagMakeWebPendingFriendRequests": "True",
|
"DFFlagMakeWebPendingFriendRequests": "True",
|
||||||
"DFFlagGetLastestAssetVersionEnabled": "True",
|
"DFFlagGetLastestAssetVersionEnabled": "True",
|
||||||
"FFlagHideDeprecatedEnums": "True",
|
"FFlagHideDeprecatedEnums": "True",
|
||||||
|
|
@ -1025,7 +1025,7 @@ header("Content-Type: application/json");
|
||||||
"DFFlagFixShapeChangeBug": "True",
|
"DFFlagFixShapeChangeBug": "True",
|
||||||
"FFlagScriptAnalyzerFixLocalScope": "True",
|
"FFlagScriptAnalyzerFixLocalScope": "True",
|
||||||
"FFlagRenderVRBBGUI": "True",
|
"FFlagRenderVRBBGUI": "True",
|
||||||
"FFlagRenderVR": "False",
|
"FFlagRenderVR": "True",
|
||||||
"DFFlagNetworkFixJoinDataItemOrder": "True",
|
"DFFlagNetworkFixJoinDataItemOrder": "True",
|
||||||
"FFlagUseUserListMenu": "True",
|
"FFlagUseUserListMenu": "True",
|
||||||
"FFlagStudioImproveModelDragFidelity": "True",
|
"FFlagStudioImproveModelDragFidelity": "True",
|
||||||
|
|
@ -1217,7 +1217,6 @@ header("Content-Type: application/json");
|
||||||
"FFlagSoundChannelMaxDistanceStopFMODChannel": "True",
|
"FFlagSoundChannelMaxDistanceStopFMODChannel": "True",
|
||||||
"FFlagRCCLoadFMOD": "True",
|
"FFlagRCCLoadFMOD": "True",
|
||||||
"FFlagSoundChannelUseV2Implementation": "False",
|
"FFlagSoundChannelUseV2Implementation": "False",
|
||||||
"FFlagRenderSoftParticles": "True",
|
|
||||||
"FFlagScriptContextSinglePendingThreadsQueue": "False",
|
"FFlagScriptContextSinglePendingThreadsQueue": "False",
|
||||||
"DFIntTeleportExceptionInfluxHundredthsPercentage": "10000",
|
"DFIntTeleportExceptionInfluxHundredthsPercentage": "10000",
|
||||||
"FIntStartupInfluxHundredthsPercentage": "100",
|
"FIntStartupInfluxHundredthsPercentage": "100",
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ require $_SERVER["DOCUMENT_ROOT"] . "/../../../WebAssemblies/loader.php";
|
||||||
$page = new Platinus\API();
|
$page = new Platinus\API();
|
||||||
|
|
||||||
if(isset($_GET["apiKey"]) && $_GET["apiKey"]=="2b4ba7fc-5843-44cf-b107-ba22d3319dcd"){
|
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{
|
}else{
|
||||||
$page->InvokeError(403, "Unauthorized");
|
$page->InvokeError(403, "Unauthorized");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,8 @@ function isGetSet($needle)
|
||||||
return isset($_GET[$needle]) && $_GET[$needle] == (int)$_GET[$needle];
|
return isset($_GET[$needle]) && $_GET[$needle] == (int)$_GET[$needle];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
file_put_contents("egg.txt", print_r($_SERVER, true));
|
||||||
|
|
||||||
if(isGetSet("id"))
|
if(isGetSet("id"))
|
||||||
{
|
{
|
||||||
$url = "https://assetdelivery.roblox.com/v1/asset/?id=" . $_GET["id"];
|
$url = "https://assetdelivery.roblox.com/v1/asset/?id=" . $_GET["id"];
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue