VX 스크립트

변수를 화면에 나타나게 해주는 스크립트입니다.
제작자: sojabird

#################################################################### # Window_HUD_VARS v2.0 # # By: SojaBird # Site: http://www.nestcast.blogspot.com # Discription: This little script creates a HUD wich can show up to 10 different variables simultaneously. # #################################################################### module SojaBird_WHV ############# # Start SETUP # ############# HUD_SWITCH = 40 # Turn this ON to show the HUD AMOUNT = 2 # Amount of variables used [1-10] VAR_ID_1 = 1 TEXT1 = "one" VAR_ID_2 = 2 TEXT2 = "two" VAR_ID_3 = 3 TEXT3 = "three" VAR_ID_4 = 4 TEXT4 = "four" VAR_ID_5 = 5 TEXT5 = "five" VAR_ID_6 = 6 TEXT6 = "six" VAR_ID_7 = 7 TEXT7 = "seven" VAR_ID_8 = 8 TEXT8 = "eight" VAR_ID_9 = 9 TEXT9 = "nine" VAR_ID_10 = 10 TEXT10 = "ten" FILE = "Window" # Name of windowstyle [Default "Window"] X_PLACEMENT = 1 # Left=1, Right=2 Y_PLACEMENT = 3 # Top=1, Middle=2, Bottom=3 WIDTH = 100 # Width of the hud ############ # End SETUP # ############ end class Window_HUD_VARS < Window_Base include SojaBird_WHV def initialize super(0, 0, WIDTH, 24*AMOUNT+32) case X_PLACEMENT when 1 self.x = 0 when 2 self.x = 494 end case Y_PLACEMENT when 1 self.y = 0 when 2 self.y = 208-(24*AMOUNT+32)/2 when 3 self.y = 416-(24*AMOUNT+32) end self.windowskin = Cache.system(FILE) self.visible = $game_switches[HUD_SWITCH] refresh end def refresh contents.clear # get values @v1 = $game_variables[VAR_ID_1] @v2 = $game_variables[VAR_ID_2] @v3 = $game_variables[VAR_ID_3] @v4 = $game_variables[VAR_ID_4] @v5 = $game_variables[VAR_ID_5] @v6 = $game_variables[VAR_ID_6] @v7 = $game_variables[VAR_ID_7] @v8 = $game_variables[VAR_ID_8] @v9 = $game_variables[VAR_ID_9] @v10 = $game_variables[VAR_ID_10] # draw values contents.draw_text(0, 0, contents.width - 0, WLH, @v1, 2) contents.draw_text(0, 24, contents.width - 0, WLH, @v2, 2) contents.draw_text(0, 48, contents.width - 0, WLH, @v3, 2) contents.draw_text(0, 72, contents.width - 0, WLH, @v4, 2) contents.draw_text(0, 96, contents.width - 0, WLH, @v5, 2) contents.draw_text(0, 120, contents.width - 0, WLH, @v6, 2) contents.draw_text(0, 144, contents.width - 0, WLH, @v7, 2) contents.draw_text(0, 168, contents.width - 0, WLH, @v8, 2) contents.draw_text(0, 192, contents.width - 0, WLH, @v9, 2) contents.draw_text(0, 216, contents.width - 0, WLH, @v10, 2) # draw text contents.draw_text(0, 0, contents.width - 0, WLH, TEXT1, 0) contents.draw_text(0, 24, contents.width - 0, WLH, TEXT2, 0) contents.draw_text(0, 48, contents.width - 0, WLH, TEXT3, 0) contents.draw_text(0, 72, contents.width - 0, WLH, TEXT4, 0) contents.draw_text(0, 96, contents.width - 0, WLH, TEXT5, 0) contents.draw_text(0, 120, contents.width - 0, WLH, TEXT6, 0) contents.draw_text(0, 144, contents.width - 0, WLH, TEXT7, 0) contents.draw_text(0, 168, contents.width - 0, WLH, TEXT8, 0) contents.draw_text(0, 192, contents.width - 0, WLH, TEXT9, 0) contents.draw_text(0, 216, contents.width - 0, WLH, TEXT10, 0) end def update self.visible = $game_switches[HUD_SWITCH] return if !self.visible if @v1 != $game_variables[VAR_ID_1] or @v2 != $game_variables[VAR_ID_2] or @v3 != $game_variables[VAR_ID_3] or @v4 != $game_variables[VAR_ID_4] or @v5 != $game_variables[VAR_ID_5] or @v6 != $game_variables[VAR_ID_6] or @v7 != $game_variables[VAR_ID_7] or @v8 != $game_variables[VAR_ID_8] or @v9 != $game_variables[VAR_ID_9] or @v10 != $game_variables[VAR_ID_10] refresh end end end #------------------------------------------------------------ # * Scene_Map: Attach HUD to map #------------------------------------------------------------ class Scene_Map < Scene_Base alias soja_scemap_sta_hudv start alias soja_scemap_ter_hudv terminate alias soja_scemap_upd_hudv update def start soja_scemap_sta_hudv @soj_hudv = Window_HUD_VARS.new end def terminate @soj_hudv.dispose soja_scemap_ter_hudv end def update soja_scemap_upd_hudv @soj_hudv.update end end


출처: rpgrevolution.com

Who's Tofuman

?
WE ARE!? PENN STATE!!!!!
Comment '8'

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 3 습작 2012.12.24 6661
377 물반사 효과 32 file RPGbooster 2008.10.08 3733
376 이동 및 탈것 대각선 이동 스크립트 17 아방스 2009.05.02 3712
375 맵/타일 타일 바꾸기 13 file 허걱 2009.09.01 3711
374 상점 (수정)크리쳐 샵, 'SW_CreatureShop' by Siot Warrior 15 file 시옷전사 2010.09.03 3707
373 기타 미니게임테트리스 스크립트 ㅋㅋㅋ 27 file 카르와푸딩의아틀리에 2009.06.30 3703
372 HUD HUD 스크립트 모음 10 아방스 2010.12.11 3688
371 기타 회피,명중,크리 스테이트를 작성하는 스크립트 9 카르와푸딩의아틀리에 2009.06.30 3687
370 기타 화폐단위 구분해 주는 스크립트 38 file 허걱 2010.04.13 3686
369 장비 장비 확장 및 EP 기능 18 만들어보자꾸나 2008.06.10 3677
368 기타 멥 이름 띄우기 10 신규회원 2012.02.24 3659
367 이름입력 글자조합 (이름생성용) - 수정 12 file 허걱 2009.07.17 3659
366 기타 낚시 스크립트~(낚시대로 하는 낚시가 아니라 사람을 낚는 낚시 스크립트) 14 file ~AYARSB~ 2010.03.18 3655
365 장비 KGC확장장비창 스크립트 15 file 티라엘 2009.03.27 3649
364 상점 상점 무기, 방어구 능력치 비교 스크립트! 18 불독 2008.12.25 3647
363 기타 Crissaegrim 농장시스템 한글화 28 file 도심 2009.12.22 3633
362 메시지 HG_POP_TEXT (맵 화면에 문자 표시) 4 file 허걱 2011.09.16 3626
361 타이틀/게임오버 타이틀전 공지사항 19 file AYARSBMA 2010.01.23 3626
360 파티 전에 아방스님이 올린 '파티 변경 시스템'을 한글화 했습니다. 17 file 아리엘 2008.09.16 3619
359 기타 [KGC]한계돌파 9 방콕족의생활 2008.06.13 3619
358 메시지 Display Flipped Picture 스크립트 11 Love♡ 2009.11.09 3608
Board Pagination Prev 1 ... 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 ... 32 Next
/ 32