Update insertasset.blade.php
This commit is contained in:
parent
72f21c6320
commit
2baa988d47
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue