이름입력

아이템, 장비, 스킬 이름 색깔 바꾸기

by 까까까 posted Mar 04, 2011
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

# 사용법은 간단합니다.

# 원하는 아이템, 장비, 스킬의 메모 부분에

# 문자색:n

# 이라고 넣으시면 됩니다.

# n 부분에는 숫자가 들어갑니다.

# 문장 표시할때 쓰는 명령어인 c[n] 과 같은 숫자가 쓰입니다.

# by 까까까

 

class Window_Base < Window

 

  alias draw_item_name_ggaggagga draw_item_name
 
  def draw_item_name(item, x, y, enabled = true)
   
    if item != nil and item.note.scan(/문자색:([0-9]+)/i)[0] != nil
      draw_icon(item.icon_index, x, y, enabled)
      color = text_color(item.note.scan(/문자색:([0-9]+)/i)[0][0].to_i)
      self.contents.font.color = color
      self.contents.font.color.alpha = enabled ? 255 : 128
      self.contents.draw_text(x + 24, y, 172, WLH, item.name)

      self.contents.font.color = normal_color

    else
      draw_item_name_ggaggagga(item, x, y)
    end
  end
 
end