update url for inseasset

This commit is contained in:
Thomas G 2022-08-08 06:40:57 +10:00
parent 40a03d1610
commit ac129b7bd6
2 changed files with 4 additions and 4 deletions

View File

@ -75,9 +75,9 @@ end)
game:GetService("ChangeHistoryService"):SetEnabled(false)
game:GetService("ContentProvider"):SetThreadPool(16)
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"):SetBaseSetsUrl("http://www.morblox.us/stamper/inseasset.maybephp?nsets=10&type=base") end)
pcall(function() game:GetService("InsertService"):SetUserSetsUrl("http://www.morblox.us/stamper/inseasset.maybephp?nsets=20&type=user&userid=%d") end)
pcall(function() game:GetService("InsertService"):SetCollectionUrl("http://www.morblox.us/stamper/inseasset.maybephp?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)

View File

@ -90,5 +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('/stamper/inseasset.maybephp', [App\Http\Controllers\ClientController::class, 'insertasset'])->name('inseasset');
Route::get('/UI/Save.aspx', [App\Http\Controllers\ClientController::class, 'modelupload'])->name('modelupload');