XP 스크립트

main 위에 넣으세요


#==============================================================================
# ■ Window_PlayTime
#------------------------------------------------------------------------------
#  메뉴 화면에서 플레이 시간을 표시하는 윈도우입니다.
#==============================================================================

class Window_PlayTime < Window_Base
#--------------------------------------------------------------------------
# ● 오브젝트 초기화
#--------------------------------------------------------------------------
def initialize
super(0, 0, 160, 126)
self.contents = Bitmap.new(width - 32, height - 32)
refresh
end
#--------------------------------------------------------------------------
# ● 리프레쉬
#--------------------------------------------------------------------------
def refresh
self.contents.clear
self.contents.font.color = text_color(6)
time = Time.now
text = time.strftime(" 시계 - %X")
self.contents.draw_text(-10, 0, 135, 32, text, 2)
self.contents.font.color = system_color
self.contents.draw_text(4, 32, 120, 32, "플레이시간")
@total_sec = Graphics.frame_count / Graphics.frame_rate
hour = @total_sec / 60 / 60
min = @total_sec / 60 % 60
sec = @total_sec % 60
text = sprintf("%02d:%02d:%02d", hour, min, sec)
self.contents.font.color = normal_color
self.contents.draw_text(4, 32, 120, 88, text, 2)
end

#--------------------------------------------------------------------------
# ● 프레임 갱신
#--------------------------------------------------------------------------
def update
super
if Graphics.frame_count / Graphics.frame_rate != @total_sec
refresh
end
end
end

Who's 백호

?

이상혁입니다.

http://elab.kr


List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 습작 2012.12.24 7308
28 메뉴 메뉴 화면 개조 스크립트 1 백호 2009.02.21 1692
27 메뉴 MOG - Scroll Bar for XP file 습작 2014.07.06 1614
26 메뉴 스테이터스 화면 from Harts Horn 2 백호 2009.02.22 1598
25 메뉴 Star Ocean 3 형식으로 스테이터스 화면 변경 1 file 백호 2009.02.21 1597
24 메뉴 1-Scene CMS 1.16 by LegACy (SDK호환) 3 file 백호 2009.02.22 1586
23 메뉴 Ring menu edit (Non-SDK ver.) Alkaid 2010.09.08 1570
22 메뉴 AP 올리기 8 알피지GM 2010.02.15 1504
21 메뉴 FF7형식의 메뉴로 변경하는 스크립트 1 file 백호 2009.02.21 1482
20 메뉴 Leidy's Ring Command Window 1.2 by DerVVulfman Alkaid 2012.09.09 1469
19 메뉴 링메뉴에 돈(G)표시하기 백호 2009.02.21 1427
18 메뉴 콤보 스크립트 백호 2009.02.22 1418
17 메뉴 링메뉴 스크립트 file 백호 2009.02.21 1402
16 메뉴 Ring menu edit for SDK2 (Original by Hypershadow180) file Alkaid 2010.09.08 1395
15 메뉴 스테이터스 일람 스크립트 file 백호 2009.02.21 1356
14 메뉴 플레이 시간 윈도우 개조 file 백호 2009.02.21 1353
13 메뉴 Advanced Command Windows by Tsunokiette file 백호 2009.02.22 1319
12 메뉴 L's Simple Custom Menu #1 R2 (SDK 2.x 필요) Alkaid 2013.01.18 1280
11 메뉴 Materia System 2 file 백호 2009.02.22 1241
10 메뉴 CogWheel Plug'n'Play Menu Bar by DerVVulfman@rmxp.org 2 백호 2009.02.22 1231
9 메뉴 FF7 Menu version 3 by AcedentProne (SDK 호환) file 백호 2009.02.22 1131
Board Pagination Prev 1 2 3 4 5 Next
/ 5