動作中
Dungeon Quest! INVENTORY SORTER SCRIPT - VERY USEFUL

スクリプトコード
Lua
local SortByRarity = true -- common, uncommon, rare, epic, legendary
local SortBackwards = true
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local SellEvent = ReplicatedStorage:WaitForChild("remotes"):WaitForChild("sellItemEvent")
local PlayerGui = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui")
local Inventory = PlayerGui:WaitForChild("inventory"):WaitForChild("mainBackground"):WaitForChild("innerBackground"):WaitForChild("rightSideFrame"):WaitForChild("ScrollingFrame")
local function RefreshInventory()
SellEvent:FireServer({["ability"] = {},["helmet"] = {},["chest"] = {},["weapon"] = {}})
end
local function GetInventorySize(Table)
local Count = 0
for i,v in pairs(Table) do
for ii,v in pairs(v) do
Count += i == "keys" and 0 or 1
end
end
return Count
end
local RarityLayout = {["common"] = 1, ["uncommon"] = 2, ["rare"] = 3, ["epic"] = 4, ["legendary"] = 5}
local function SortInventory(Table)
local function SortLocation(Location)
for _,Label in pairs(Location:GetChildren()) do
if Label:IsA("ImageLabel") then
local itemType = Label:WaitForChild("itemType").Value
local uniqueItemNum = Label:WaitForChild("itemType"):WaitForChild("uniqueItemNum").Value
for i,v in pairs(itemType == "weapon" and Table.weapons or itemType == "helmet" and Table.helmets or itemType == "ability" and Table.abilities or itemType == "chest" and Table.chests) do
if tonumber(string.sub(i,itemType == "weapon" and 8 or itemType == "helmet" and 8 or itemType == "ability" and 9 or itemType == "chest" and 7)) == uniqueItemNum then
Label.LayoutOrder = SortByRarity and SortBackwards and 6-RarityLayout[v.rarity] or SortByRarity and RarityLayout[v.rarity] or SortBackwards and 999-tonumber(v.levelReq) or tonumber(v.levelReq)
end
end
end
end
end
SortLocation(Inventory)
if PlayerGui:FindFirstChild("tradingGui") then SortLocation(PlayerGui:WaitForChild("tradingGui"):WaitForChild("mainBackground"):WaitForChild("innerBackground"):WaitForChild("rightSideFrame"):WaitForChild("ScrollingFrame")) end
if PlayerGui:FindFirstChild("blacksmith") then SortLocation(PlayerGui:WaitForChild("blacksmith"):WaitForChild("Frame"):WaitForChild("innerFrame"):WaitForChild("rightSideFrame"):WaitForChild("ScrollingFrame")) end
if PlayerGui:FindFirstChild("sellShop") then SortLocation(PlayerGui:WaitForChild("sellShop"):WaitForChild("Frame"):WaitForChild("innerFrame"):WaitForChild("rightSideFrame"):WaitForChild("ScrollingFrame")) end
end
ReplicatedStorage.remotes.updateLocalInventoryTable.OnClientEvent:Connect(function(UpdatedTable)
if UpdatedTable then
--itemtable = updatedtable;
--print(GetInventorySize(UpdatedTable))
SortInventory(UpdatedTable)
end;
end); RefreshInventory()
PlayerGui.ChildAdded:Connect(function(v)
if v.Name == "tradingGui" or v.Name == "blacksmith" or v.Name == "sellShop" then
local ScrollFrame = v.Name == "sellShop" and PlayerGui:WaitForChild("sellShop"):WaitForChild("Frame"):WaitForChild("innerFrame"):WaitForChild("rightSideFrame"):WaitForChild("ScrollingFrame") or
v.Name == "blacksmith" and PlayerGui:WaitForChild("blacksmith"):WaitForChild("Frame"):WaitForChild("innerFrame"):WaitForChild("rightSideFrame"):WaitForChild("ScrollingFrame") or
v.Name == "tradingGui" and PlayerGui:WaitForChild("tradingGui"):WaitForChild("mainBackground"):WaitForChild("innerBackground"):WaitForChild("rightSideFrame"):WaitForChild("ScrollingFrame")
ScrollFrame.ChildAdded:Wait()
RefreshInventory()
end
end)
説明
Original description was lost during migration. Sorry for any inconvenience caused. - robloxscripts.com Admin
#dungeon-quest-new-ai-auto-farm#roblox-dungeon-quest-cheats#roblox-dungeon-quest-auto-dodge#dungeon-quest-cheats#still-scripts#dungeon-quest#dungeon-quest-hacks#scripts#roblox-dungeon-quest-auto-farmm#roblox-dungeon-quest-cheats-2022#roblox-dungeon-quest-auto-farm#dungeon-quest-scripts
コメント (0)
- 最初のコメントを投稿しましょう。
よくある質問
- Dungeon Quest! INVENTORY SORTER SCRIPT - VERY USEFULスクリプトはどう使いますか?
- 上のスクリプトコードをコピーし、Robloxエグゼキューターを開いて貼り付け、ゲーム中に実行を押してください。スクリプトが実行されると、機能が即座に有効になります。
- Dungeon Quest! INVENTORY SORTER SCRIPT - VERY USEFULスクリプトは無料ですか?
- はい。このスクリプトは無料でコピー&使用できます。キーシステムを使用している場合は、リンクから無料でキーを取得してください。
- Dungeon Quest! INVENTORY SORTER SCRIPT - VERY USEFULスクリプトの使用は安全ですか?
- ソースコード全体がこのページに表示されるので、実行前に内容を正確に確認できます。信頼できるエグゼキューターを使用し、スクリプトの使用はRobloxの利用規約に違反するため、自己責任で使用してください。
- Dungeon Quest! INVENTORY SORTER SCRIPT - VERY USEFULに対応するエグゼキューターは?
- このスクリプトはほとんどの人気Robloxエグゼキューターで動作します。お使いのデバイス向けの信頼できる無料または有料エグゼキューターを見つけるには、エグゼキューターページをご覧ください。