-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbruteforce Updated
91 lines (87 loc) · 3.25 KB
/
bruteforce Updated
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
side = 1 ----transposer side to chest or tank
computer = require("computer")
component = require("component")
inv = component.transposer
print("[CHEST] or [TANK]")
local inpst = io.read()
count = 0
if inpst == "TANK" or inpst == "tank" then
chest = component.ender_tank
choice = "tank"
print("Sleep Timer before Scan: (number)")
inpun = io.read()
for one = 0,15 do
for two = 0,15 do
for three = 0,15 do
chest.setFrequency(one,two,three)
os.sleep(tonumber(inpun))
count = count+1
print("("..count.."/4096)")
if inv.getTankLevel(side) > 0 then
print(one.."!"..two.."!"..three)
print("FLUID TANK FOUND!!1 $$$")
print("=================")
print("=skip or enter=")
computer.beep(500,0.5)
computer.beep(200,0.5)
computer.beep(500,0.5)
io.read()
end
end
end
end
else
local chest = component.ender_chest
local choice = "chest"
print("[FLEX] or [SNIPER]")
local mode = io.read()
print("runs: (number)")
local runs = io.read()
for one = 0,15 do
for two = 0,15 do
for three = 0,15 do
chest.setFrequency(one,two,three)
count = count+1
print("("..count.."/4096)")
for i = 1,tonumber(runs) do
if mode == "SNIPER" or mode == "sniper" then
local itm = inv.getStackInSlot(side,1)
if itm ~= nil then
print(itm.name)
print(one.."!"..two.."!"..three)
print("ITEM SNIPED!!1 $$$")
print("=================")
print("=skip or enter=")
computer.beep(500,0.5)
computer.beep(200,0.5)
computer.beep(500,0.5)
inpun = io.read()
if inpun == "skip" then
break
end
end
else
os.sleep(0) ----------------for memory!
local stacks = inv.getAllStacks(side)
for stack in stacks do
if stack.name ~= "minecraft:air" and stack.name ~= nil then
print(stack.name)
print(one.."!"..two.."!"..three)
print("ITEM FOUND!!1 $$$")
print("=================")
print("=skip or enter=")
computer.beep(500,0.5)
computer.beep(200,0.5)
computer.beep(500,0.5)
inpun = io.read()
if inpun == "skip" then
break
end
end
end
end
end
end
end
end
end