Updated to OTCv8 3.0 rev 19

This commit is contained in:
OTCv8
2021-04-09 19:01:18 +00:00
parent a26109ce3f
commit 0298cece93
93 changed files with 13452 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
setDefaultTab("Tools")
local reUseToggle = macro(1000, "Click ReUse", "`", function() end)
local excluded = {268, 237, 238, 23373, 266, 236, 239, 7643, 23375, 7642, 23374, 5908, 5942, storage.shovel, storage.rope, storage.machete}
onUseWith(function(pos, itemId, target, subType)
if reUseToggle.isOn() and not table.find(excluded, itemId) then
schedule(50, function()
item = findItem(itemId)
if item then
modules.game_interface.startUseWith(item)
end
end)
end
end)