inseasset.php
This commit is contained in:
parent
c88650fab6
commit
40a03d1610
|
|
@ -20,9 +20,4 @@
|
|||
$file = "http://morblox.us/stamper/sid/{$sid}.xml";
|
||||
readfile($file);
|
||||
}
|
||||
if ($nsets) {
|
||||
header("content-type:text/xml");
|
||||
$file = "http://morblox.us/stamper/sid/{$sid}.xml";
|
||||
readfile($file);
|
||||
}
|
||||
@endphp
|
||||
|
|
@ -75,11 +75,11 @@ end)
|
|||
|
||||
game:GetService("ChangeHistoryService"):SetEnabled(false)
|
||||
game:GetService("ContentProvider"):SetThreadPool(16)
|
||||
game:GetService("InsertService"):SetBaseSetsUrl("http://www.morblox.us/Game/Tools/InsertAsset.ashx?nsets=10&type=base")
|
||||
game:GetService("InsertService"):SetUserSetsUrl("http://www.morblox.us/Game/Tools/InsertAsset.ashx?nsets=20&type=user&userid=%d&sid=%d")
|
||||
game:GetService("InsertService"):SetCollectionUrl("http://www.morblox.us/Game/Tools/InsertAsset.ashx?sid=%d")
|
||||
game:GetService("InsertService"):SetAssetUrl("http://www.morblox.us/asset/?id=%d")
|
||||
game:GetService("InsertService"):SetAssetVersionUrl("http://www.morblox.us/Asset/?assetversionid=%d")
|
||||
pcall(function() game:GetService("InsertService"):SetBaseSetsUrl("http://www.morblox.us/stamper/inseasset.php?nsets=10&type=base") end)
|
||||
pcall(function() game:GetService("InsertService"):SetUserSetsUrl("http://www.morblox.us/stamper/inseasset.php?nsets=20&type=user&userid=%d") end)
|
||||
pcall(function() game:GetService("InsertService"):SetCollectionUrl("http://www.morblox.us/stamper/inseasset.php?sid=%d") end)
|
||||
pcall(function() game:GetService("InsertService"):SetAssetUrl("http://www.morblox.us/asset/?id=%d") end)
|
||||
pcall(function() game:GetService("InsertService"):SetAssetVersionUrl("http://www.morblox.us/asset/?id=%d") end)
|
||||
|
||||
pcall(function() game:GetService("SocialService"):SetFriendUrl("http://www.morblox.us/Game/LuaWebService/HandleSocialRequest.ashx?method=IsFriendsWith&playerid=%d&userid=%d") end)
|
||||
pcall(function() game:GetService("SocialService"):SetBestFriendUrl("http://www.morblox.us/Game/LuaWebService/HandleSocialRequest.ashx?method=IsBestFriendsWith&playerid=%d&userid=%d") end)
|
||||
|
|
|
|||
|
|
@ -90,4 +90,5 @@ Route::get('/UploadMedia/PostImage.aspx', [App\Http\Controllers\ClientController
|
|||
Route::get('/UploadMedia/UploadVideo.aspx', [App\Http\Controllers\ClientController::class, 'uploadvideo'])->name('uploadvideo');
|
||||
Route::get('/Game/KeepAlivePinger.ashx', [App\Http\Controllers\ClientController::class, 'keepalive'])->name('keepalive');
|
||||
Route::get('/Game/Tools/InsertAsset.ashx', [App\Http\Controllers\ClientController::class, 'insertasset'])->name('insertasset');
|
||||
Route::get('/stamper/inseasset.php', [App\Http\Controllers\ClientController::class, 'insertasset'])->name('inseasset');
|
||||
Route::get('/UI/Save.aspx', [App\Http\Controllers\ClientController::class, 'modelupload'])->name('modelupload');
|
||||
Loading…
Reference in New Issue