Comment if you can get this working on your machine or have ideas how to better code this or just talk about it.
Yes, i'm new here, Hi all o/
-> Code is very hacky and just proof of concept <- used computercraft 1.75 mc 1.7.10
term.native().clear()
term.native().setCursorPos( 2 , 2 )
term.native().blit( "\226\149\146\226\149\144\226\149\144\226\149\144\226\149\144\226\149\144\226\149\149", "0000000", "bbbbbbb" )
term.native().setCursorPos( 2 , 3 )
term.native().blit( "\226\148\130" .. " YES " .. "\226\148\130", "0000000", "bbbbbbb" )
term.native().setCursorPos( 2 , 4 )
term.native().blit( "\226\148\148\226\148\128\226\148\128\226\148\128\226\148\128\226\148\128\226\148\152", "0000000", "bbbbbbb" )
local monitor = peripheral.find("monitor")
if monitor then
monitor.clear()
monitor.setCursorPos( 1 , 1 )
monitor.blit( "\226\149\146\226\149\144\226\149\144\226\149\144\226\149\144\226\149\144\226\149\149", "0000000", "bbbbbbb" )
monitor.setCursorPos( 1 , 2 )
monitor.blit( "\226\148\130" .. " YES " .. "\226\148\130", "0000000", "bbbbbbb" )
monitor.setCursorPos( 1 , 3 )
monitor.blit( "\226\148\148\226\148\128\226\148\128\226\148\128\226\148\128\226\148\128\226\148\152", "0000000", "bbbbbbb" )
end
while true do
event, x = os.pullEvent()
if event == "key_up" and x == 16 then
break
end
end
characters - > http://pastebin.com/ZURrECkL