XP 스크립트

#==============================================================================
# ■ Window_Command
#------------------------------------------------------------------------------
#  메인 커멘드 메뉴(자작)
#==============================================================================

class Window_Command2 < Window_Selectable
#--------------------------------------------------------------------------
# ● 오브젝트 초기화
# width : 윈도우의 폭
# commands : 커멘드 문자열의 배열
#--------------------------------------------------------------------------
def initialize(time = 0)
# ★time를 추가
super(0, 0, 267, 439, time)
@item_max = $game_party.actors.size + 1
#@commands = commands
self.contents = Bitmap.new(width - 32, height - 32)
#self.active = true
self.index = 0
@column_max = $game_party.actors.size + 1
#self.side_mode = true
refresh
end
#--------------------------------------------------------------------------
# ● 리프레쉬
#--------------------------------------------------------------------------
def refresh
self.contents.clear
@item_max = $game_party.actors.size
for i in 0...$game_party.actors.size
x = 51 * i + 75
y = 48
actor = $game_party.actors[i]
draw_actor_graphic(actor, x, y)
end
end
#--------------------------------------------------------------------------
# ● 커서의 구형 갱신 불요?그렇지만 깎으면 무섭다.
#--------------------------------------------------------------------------
def update_cursor_rect
if @index < 0
self.cursor_rect.empty
else
self.cursor_rect.set(@index * 51, 0, 48, 48)
end
end

Who's 백호

?

이상혁입니다.

http://elab.kr


List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 습작 2012.12.24 7310
114 기타 CG모드 도입 스크립트 file 백호 2009.02.21 1399
113 기타 간단한 Scene_Base Alkaid 2010.09.09 1399
112 기타 Shift Puzzles by SephirothSpawn (SDK호환) 1 file 백호 2009.02.22 1397
111 기타 Chaos Project Debug System 1.06b by Blizzard file Alkaid 2010.09.07 1380
110 기타 스크린샷 찍는 스크립트 9 file 백호 2009.02.22 1377
109 기타 Minesweeper(지뢰찾기) by SephirothSpawn (SDK호환) 3 file 백호 2009.02.22 1372
108 기타 (T-RPG) 데미지 표시 시의 폰트를 설정 백호 2009.02.22 1371
107 기타 빛의 퍼즐 -미니게임- 1 file 백호 2009.02.21 1369
106 기타 실제시간표시스크립트입니다...[중뷁이면지성;;] 4 백호 2009.02.22 1366
105 기타 랜덤 지하 감옥 작성 스크립트 1 file 백호 2009.02.21 1349
104 기타 엔딩에 스탭롤을 도입하는 스크립트 1 file 백호 2009.02.21 1348
103 기타 Text to RGSS by DerVVulfman Alkaid 2011.04.18 1333
102 기타 Complete Climate and Time System 1.2 by ForeverZer0 1 Alkaid 2010.09.17 1320
101 기타 KGC - 입수 경험치&금 증가 스크립트 백호 2009.02.22 1318
100 기타 카운트 3초 1 file 백호 2009.02.22 1306
99 기타 Realistic Shop by MeisMe@rmxp.org 3 file 백호 2009.02.22 1306
98 기타 ID띄우기 스크립트(新) 3 백호 2009.02.22 1290
97 기타 Advanced Weather System (AWS) 3 file 백호 2009.02.22 1289
96 기타 Golden_sun_intro v1 1 백호 2009.02.22 1275
95 기타 Etude87_Bone_Animation_Character ver.1.2 4 습작 2012.07.06 1274
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 12 13 Next
/ 13