Update insertasset.blade.php

This commit is contained in:
Thomas G 2022-08-09 05:04:29 +10:00
parent 72f21c6320
commit 2baa988d47
1 changed files with 2 additions and 4 deletions

View File

@ -5,15 +5,13 @@
$userid = (int)$_GET["userid"];
$sid = (int)$_GET["sid"];
//http://roblox.com/Game/Tools/InsertAsset.ashx?nsets=20&type=user&userid=11744447
if ($nsets == 20 && $type == "user")
{
if ($nsets == 20 && $type == "user") {
header("content-type:text/xml");
$file = "http://morblox.us/stamper/base/{$userid}.xml";
readfile($file);
//
//header("location:" . "http://morblox.us/stamper/base/{$userid}.xml");
} elseif ($sid != 0 && $type == "0")
{
} else if ($sid != 0 && $type == "0") {
header("content-type:text/xml");
$file = "http://morblox.us/stamper/sid/{$sid}.xml";
readfile($file);