forked from hkc/cc-stuff
1
0
Fork 0

Compare commits

..

No commits in common. "2856bf796bf876b1d8c0298a424619e5b24f0878" and "89f4685a222c65398ded525b24d04688c3ed37f2" have entirely different histories.

3 changed files with 2 additions and 38 deletions

View File

@ -1,5 +1,5 @@
{
"repository": "https://git.salushnes.solutions/vftdan/cc-stuff/raw/branch/vftdan/augment",
"repository": "https://git.salushnes.solutions/hkc/cc-stuff/raw/branch/master/augment",
"files": [
{
"path": "startup",
@ -13,10 +13,6 @@
"path": "modules/event.lua",
"src": "modules/event.lua"
},
{
"path": "modules/hangglider_boost.lua",
"src": "modules/hangglider_boost.lua"
},
{
"path": "modules/wh.lua",
"src": "modules/wh.lua"

View File

@ -1,32 +0,0 @@
return function()
local ni = peripheral.wrap("back")
local sneakTicks = 0
local meta = nil
local windowEvents = {nil, nil, nil}
local windowDuration = 20
local clockCounter = 0
parallel.waitForAny(
function() while _G._running do
if meta and windowEvents[3] ~= nil and windowEvents[3] + windowDuration >= clockCounter then
local mainHand = meta.heldItem and meta.heldItem.getMetadata().name
local offHand = meta.offhandItem and meta.offhandItem.getMetadata().name
if mainHand == "openblocks:hang_glider" or offHand == "openblocks:hang_glider" then
ni.launch(meta.yaw, meta.pitch, 4)
end
end
os.sleep(0.05)
end end,
function() while _G._running do
meta = ni.getMetaOwner()
clockCounter = clockCounter + 1
if meta.isSneaking then
sneakTicks = sneakTicks + 1
elseif sneakTicks ~= 0 then
windowEvents = {clockCounter, windowEvents[1], windowEvents[2]}
sneakTicks = 0
end
os.sleep(0.05)
end end)
end

View File

@ -1,4 +1,4 @@
local repository = "https://git.salushnes.solutions/vftdan/cc-stuff/raw/branch/vftdan/augment/files.json"
local repository = "https://git.salushnes.solutions/hkc/cc-stuff/raw/branch/master/augment/files.json"
local files = textutils.unserializeJSON(http.get(repository).readAll())
local function getFile(url, path)