11 Nov 2019, 18:21

Okay, I just tested it and meh ~ use this instead;

frame_count = 0
string = "Really looking forward to playing Steve's Missile Command game"
tick = 0
proceed = false

while !proceed loop
  clear()
  printat(0, 0, string[:tick])
  if frame_count % 20 == 0 then
    tick += 1
    if tick == len(string) then
      proceed = true
    endif
  endif
  update()
  frame_count += 1
repeat

It was close enough :)

edit: See https://fuzearena.com/forum/topic/70/hints-and-tips/9