summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-04-02 02:38:13 +0100
committerubq323 <ubq323@ubq323.website>2024-04-02 02:38:13 +0100
commitf1b01807622f07f122307f78916070674a21387f (patch)
treef8e0ae77e2fe13b7e8fc7288a64d0ef354d65454
parent2d256aa242cc81833aa7bb96d5acef444027acc9 (diff)
launch beescroll
-rw-r--r--beescroll.lua33
1 files changed, 32 insertions, 1 deletions
diff --git a/beescroll.lua b/beescroll.lua
index 3859240..3384c58 100644
--- a/beescroll.lua
+++ b/beescroll.lua
@@ -2,11 +2,42 @@ local m = peripheral.find"monitor"
local W,H = m.getSize()
+local verbs = {
+ "recovered",
+ "extinguished",
+ "exsanguinated",
+ "defenestrated",
+ "obtained",
+ "recovered",
+ "mistreated",
+ "relocated",
+ "enraptured",
+ "found",
+ "seen",
+ "heard",
+ "devestated",
+ "trusted",
+ "distrusted",
+ "promoted",
+ "extended",
+ "stretched",
+ "squished",
+ "moved",
+ "rotated",
+ "frozen",
+ "unfrozen",
+ "deployed",
+ "redeployed",
+ "shaken",
+ "stirred",
+}
+
+
while true do
local x = math.random(0,999999)
m.scroll(1)
m.setCursorPos(1,H)
- m.write(string.format("%06d",x))
+ m.write(string.format("%6d",x))
os.sleep(1)
end