diff options
-rw-r--r-- | beescroll.lua | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/beescroll.lua b/beescroll.lua index 96b31d0..e62ce82 100644 --- a/beescroll.lua +++ b/beescroll.lua @@ -86,10 +86,14 @@ while true do m.scroll(1) m.setCursorPos(1,H) slow_write_f(m, { - colors.white, string.format("%5d",math.random(0,99999)), + choice{colors.yellow, colors.red, colors.cyan}, + string.format("%5d",math.random(0,99999)), norm_color, " bees ", choice{"have been ","were "}, - colors.lime, choice(verbs), - norm_color, " in ", colors.lightBlue, choice(cities), + choice{colors.lime, colors.lightBlue, colors.pink}, + choice(verbs), + norm_color, " in ", + choice{colors.orange, colors.yellow, colors.purple} + choice(cities), norm_color, "."}) os.sleep(1) |