BlackShark - And you did such an awesome job on it too... Honestly, anyone in their right mind thinking a custom firmware had been written in Lua, let alone written by a novice (shown in your sig by homebrew releases), is NOT in their right mind... And quit being so conceited, you didnt even answer his question... (hopefully you can for htat matter)
xtreme - Your looking to use a timer... In this code below, itll do as you say, and add a '.' every 1 second, after 3 periods have been added, itll reset:
Code:timer = Timer.new()
timer:start()
red = Color.new(255,0,0)
while true do
screen:clear()
screen:print(208,131,"Bricking",red)
if timer:time() >= 1000 and timer:time() < 2000 then
screen:print(272,131,".",red)
elseif timer:time() >= 2000 and timer:time() < 3000 then
screen:print(272,131,"..",red)
elseif timer:time() >= 3000 and timer:time() < 4000 then
screen:print(272,131,"...",red)
elseif timer:time() >= 4000 then
timer:reset()
timer:start()
end
screen.waitVblankStart()
screen.flip()
end
