Hello, So i recently coded myself this:
m = peripheral.wrap("right")
m.setAutoCollect(true)
local currLevel = 0
while true do
turtle.attack()
currLevel = m.getLevels()
print("Currently Level: "..currLevel)
sleep(1)
And it's spamming this in the turtle:
and i want to take that and put it on a monitor display:
Who could help me with Lua codeing knowledge?
I would like it to display the Current Level
like the turtle has but i dont want it spammed on the monitor
So please Could someone with Lua codeing knowledge Help me with this
Thanks
- Killer5252 ^_^
m = peripheral.wrap("right")
m.setAutoCollect(true)
local currLevel = 0
while true do
turtle.attack()
currLevel = m.getLevels()
print("Currently Level: "..currLevel)
sleep(1)
And it's spamming this in the turtle:
and i want to take that and put it on a monitor display:
Who could help me with Lua codeing knowledge?
I would like it to display the Current Level
like the turtle has but i dont want it spammed on the monitor
So please Could someone with Lua codeing knowledge Help me with this
Thanks
- Killer5252 ^_^