test
This commit is contained in:
parent
2ae94e9fa8
commit
6246f0ab8e
|
|
@ -0,0 +1,10 @@
|
||||||
|
<roblox xmlns:xmime="http://www.w3.org/2005/05/xmlmime" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.morblox.us/roblox.xsd" version="4">
|
||||||
|
<External>null</External>
|
||||||
|
<External>nil</External>
|
||||||
|
<Item class="ShirtGraphic" referent="RBX0">
|
||||||
|
<Properties>
|
||||||
|
<Content name="Graphic"><url>http://morblox.us/asset/?id=304</url></Content>
|
||||||
|
<string name="Name">Shirt Graphic</string>
|
||||||
|
</Properties>
|
||||||
|
</Item>
|
||||||
|
</roblox>
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
|
|
@ -0,0 +1,10 @@
|
||||||
|
<roblox xmlns:xmime="http://www.w3.org/2005/05/xmlmime" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.morblox.us/roblox.xsd" version="4">
|
||||||
|
<External>null</External>
|
||||||
|
<External>nil</External>
|
||||||
|
<Item class="Pants" referent="RBX0">
|
||||||
|
<Properties>
|
||||||
|
<string name="Name">Clothing</string>
|
||||||
|
<Content name="PantsTemplate"><url>http://morblox.us/asset/?id=4000000000000000001</url></Content>
|
||||||
|
</Properties>
|
||||||
|
</Item>
|
||||||
|
</roblox>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<roblox xmlns:xmime="http://www.w3.org/2005/05/xmlmime" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.morblox.us/roblox.xsd" version="4">
|
||||||
|
<External>null</External>
|
||||||
|
<External>nil</External>
|
||||||
|
<Item class="Shirt" referent="RBX0">
|
||||||
|
<Properties>
|
||||||
|
<string name="Name">Clothing</string>
|
||||||
|
<Content name="ShirtTemplate"><url>http://morblox.us/asset/?id=4000000000000000000</url></Content>
|
||||||
|
</Properties>
|
||||||
|
</Item>
|
||||||
|
</roblox>
|
||||||
|
|
@ -2,6 +2,12 @@
|
||||||
header("content-type:application/xml");
|
header("content-type:application/xml");
|
||||||
ob_start();
|
ob_start();
|
||||||
$userId = addslashes($_GET["userId"]);
|
$userId = addslashes($_GET["userId"]);
|
||||||
|
$hat1 = 300;
|
||||||
|
$hat2 = 0;
|
||||||
|
$hat3 = 0;
|
||||||
|
$shirt = 306;
|
||||||
|
$pants = 305;
|
||||||
|
$shirtgraphic = 303;
|
||||||
//TODO: add catalog + avatar system
|
//TODO: add catalog + avatar system
|
||||||
@endphp
|
@endphp
|
||||||
http://morblox.us/Asset/BodyColors.ashx?userId=@php echo $userId @endphp;http://morblox.us/asset/?id=300
|
http://morblox.us/Asset/BodyColors.ashx?userId=@php echo $userId @endphp;http://morblox.us/asset/?id=@php echo $hat1 @endphp;http://morblox.us/asset/?id=@php echo $hat2 @endphp;http://morblox.us/asset/?id=@php echo $hat3 @endphp;http://morblox.us/asset/?id=@php echo $shirt @endphp;http://morblox.us/asset/?id=@php echo $pants @endphp;http://morblox.us/asset/?id=@php echo $shirtgraphic @endphp
|
||||||
Loading…
Reference in New Issue