CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 03:26:11 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=7c6b7b8d8a01f040f3c88adefa54aceb28179be868d5279cdcdd2263aea44422a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22JvRgFWONxQR6e7Su-53xgTP2QCXx5Zmn%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d37e87fc2dd86d-BLR
speed-test-turtle - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local time1 = os.clock()
- for i = 1, 15 do
- turtle.forward()
- end
- local time2 = os.clock()
- local tTime = time2 - time1
- print("for -> " .. (tTime / 15) .. "s per block")
- local time1 = os.clock()
- for i = 1, 15 do
- turtle.detect()
- turtle.forward()
- end
- local time2 = os.clock()
- local tTime = time2 - time1
- print("det+for -> " .. (tTime / 15) .. "s per block")
- --====================================================--
- -- miner constants
- FACE_N = 0
- FACE_E = 1
- FACE_S = 2
- FACE_W = 3
- miner = {} -- the turtle
- miner['direction'] = 0
- miner['x'] = 0
- miner['y'] = 0
- miner['z'] = 0
- miner['start_x'], miner['start_z'], miner['start_y'] = miner['x'], miner['z'], miner['y']
- miner['start_direction'] = miner['direction']
- function miner.updateHz(n)
- n = n or 1
- if miner['direction'] == FACE_N then miner['z'] = miner['z'] - n
- elseif miner['direction'] == FACE_S then miner['z'] = miner['z'] + n
- elseif miner['direction'] == FACE_W then miner['x'] = miner['x'] - n
- elseif miner['direction'] == FACE_E then miner['x'] = miner['x'] + n
- end
- end
- function miner.forward(n)
- n = n or 1
- for i=1,n do
- if (not turtle.forward()) then return false end
- miner.updateHz(1)
- end
- return true
- end
- local time1 = os.clock()
- for i=1,15 do
- if turtle.getFuelLevel() < 1 then
- print(123)
- end
- if (not miner.forward()) then
- -- this needs to be looped in case of airdrops (sand, gravel etc)
- -- also to wait for despawn?
- while turtle.detect() do
- turtle.dig()
- os.sleep(0.1)
- end
- while not miner.forward() do
- turtle.attack()
- end
- end
- end
- local time2 = os.clock()
- local tTime = time2 - time1
- print("det+dig+for -> " .. (tTime / 15) .. "s per block")
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐✅ Swapzone Glitch ✅ Working ⭐⭐ P
JavaScript | 5 sec ago | 0.25 KB
-
⭐⭐⭐Make $15OO in 2O minutesV E⭐⭐
Java | 6 sec ago | 0.10 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ X
JavaScript | 11 sec ago | 0.25 KB
-
✅ Make $2500 in 20 minutes⭐⭐⭐ E
JavaScript | 14 sec ago | 0.25 KB
-
⭐⭐⭐Instant Profit Method⭐⭐
Java | 17 sec ago | 0.10 KB
-
⭐✅ Swapzone Glitch ✅ Working ⭐⭐ X
JavaScript | 20 sec ago | 0.25 KB
-
📌 Swapzone +37% glitch ⭐ T
JavaScript | 23 sec ago | 0.25 KB
-
⭐⭐⭐Exploit 500$ in 15 Minutes⭐⭐
Java | 28 sec ago | 0.10 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand