summaryrefslogtreecommitdiff
path: root/shop.lua
blob: 570dea99f2cbd5e129c58850726bd9a9ea8b477c (plain)
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
-- sres =textutils.unserializeJSON( http.post("https://krist.dev/ws/start","").readAll())
-- assert(sres.ok,"not ok")
-- wsurl = sres.url


mtop = peripheral.wrap"top"
while true do
mtop.setTextScale(3.5)
mtop.setTextColor(colors.cyan)
mtop.setCursorPos(1,1)
mtop.write"DIAMONDS"

os.sleep(0.25)
mtop.clear()
os.sleep(0.25)

mtop.setTextScale(3)
mtop.setTextColor(colors.white)
mtop.setCursorPos(1,1)
mtop.write("5KST EACH")

os.sleep(0.25)
mtop.clear()
os.sleep(0.25)

end