메뉴창에서 나타나는 소지금 (Window_Gold) 부분을 개조해보았습니다.
개조 목적은 메뉴창에 나타나는 소지금을 오전, 오후 등의 시간대를 나타내기 위해 만든 것입니다.
미연시라고 하는 것이 편할라나, 그런 위주의 게임을 만들기 위해서요.
일단 이게 개조한 것이구요.
#==============================================================================
#==============================================================================
class Window_Times < Window_Base
#--------------------------------------------------------------------------
#--------------------------------------------------------------------------
def initialize
super(0, 0, window_width, fitting_height(1))
refresh
end
#--------------------------------------------------------------------------
#--------------------------------------------------------------------------
def window_width
return 160
end
#--------------------------------------------------------------------------
#--------------------------------------------------------------------------
def refresh
contents.clear
if $game_variables[20] == 0
draw_currency_value("오전", 4, 0, contents.width - 8)
elsif $game_variables[20] == 1
draw_currency_value("오후", 4, 0, contents.width - 8)
elsif $game_variables[20] == 2
draw_currency_value("저녁", 4, 0, contents.width - 8)
elsif $game_variables[20] == 3
draw_currency_value("밤", 4, 0, contents.width - 8)
elsif $game_variables[20] == 4
draw_currency_value("새벽", 4, 0, contents.width - 8)
end
#--------------------------------------------------------------------------
#--------------------------------------------------------------------------
def open
refresh
super
end
end
VXA 강좌 게시판에서 오리별자리님꼐서 올려주신 강의를 보면서 만든 것입니다.