А, всё, я сделал.
Вставить в самое начало.
PHP код:
class Bitmap
  def sh_draw_text
(x,y,w,h,text,0)
    
temp font.color.clone
    
font.color Color.new(0,0,0)
    
draw_text(x+1,y+1,w,h,text,a,false)
    
font.color temp
    draw_text
(x,y,w,h,text,a,false)
  
end
  
  alias andrew_draw_text draw_text
  
  def draw_text
(x,y,w,h,text,0sh true)
    if 
sh
      sh_draw_text
(x,y,w,h,text,a)
    else 
      
andrew_draw_text(x,y,w,h,text,a)
    
end
  end
end