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!