Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Just out of curiosity, how do you get those black outlines on text?

Pretty simple. I just made a simple function called print_shadow. Looks like this:

function print_shadow(msg,x,y,c)
    for i=-1,1 do for j=-1,1 do
        print(msg,x+i,y+j,0)
    end end
    print(msg,x,y,c)
end

Cool! Thanks!