XP 스크립트



#============================================
# Window_Map
# 제작자: 키스코
# 설명: 넷플레이 HUD
#============================================
class Window_Map < Window_Base
def initialize
  super(0, 0, 225, 120)
  $game_actors[1].name = $username # 아이디표시
  self.contents = Bitmap.new(width - 32, height - 32)
  self.opacity = 255
  refresh
end
def refresh
  self.contents.clear
  self.contents.font.color = normal_color
  self.contents.font.size = 16 #사이즈
  self.contents.draw_text(36, 6, 640, 32, $game_actors[1].name.to_s)
  self.contents.draw_text(58, 61, 640, 32, $game_party.gold.to_s)
  statc = RPG::Cache.icon("acce_005")
  src_rect = Rect.new(0, 0, statc.width, statc.height)
  self.contents.blt(28, 64, statc, src_rect)
  chatc = RPG::Cache.icon("033-Item02")
  src_rect = Rect.new(0, 0, chatc.width, chatc.height)
  self.contents.blt(10, 57, chatc, src_rect) if $game_temp.chat_refresh == true
  draw_normal_barz(36, 33, "horizontal", 150, 10, $game_actors[1].hp.to_i, $game_actors[1].maxhp.to_i, Color.new (225, 0, 0, 225))
  draw_normal_barz(36, 49, "horizontal", 150, 10, $game_actors[1].sp.to_i, $game_actors[1].maxsp.to_i, Color.new (0,0,255,255))
  draw_actor_graphic($game_actors[1], 15, 63)
  draw_actor_level($game_actors[1], 128, 6) #주인공의 레벨
end
  def update
  refresh
end
end

Who's 백호

?

이상혁입니다.

http://elab.kr

Atachment
첨부 '1'
Comment '2'

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 습작 2012.12.24 6153
34 HUD 주인공,NPC이름 머리 나타내기 49 file 송긔 2010.11.28 6058
33 HUD [게이지바]2.0버젼「체력,마나,경험치,직업,캐릭터,레벨,돈,맵이름」(HelloCoa2Ver2.0) 67 file 코아 코스튬 2010.10.23 5550
32 HUD [맵이동시 맵이름을 표시] 심플한 디자인 36 file 제로스S2 2009.08.05 5000
31 HUD [게이지바]3.0버젼「현재시간, 플레이시간, 걸음수, 윈도우 이동 추가」(HelloCoa2Ver3.0) 63 file 코아 코스튬 2010.10.30 4921
30 HUD 새로운방법의 맵이름 표시 31 file 백호 2009.02.21 4617
29 HUD HP과 SP 바 19 Man... 2008.11.04 4534
28 HUD 캐릭터 아래 SP,HP표시해주는 스크립트 33 file 김!제스! 2010.08.04 4269
27 HUD 맵 이름 표시와 미니맵을 같이하자 8 file 뮤리온。 2011.10.08 4190
26 HUD 이름띄우기스크립트 - [ID홍길동] 이 아닌 [홍길동]으로 표기하기 27 블루레스 2009.11.06 4054
25 HUD [VX 가능] 이벤트 이름 띄우기 41 file 독도2005 2009.08.22 3901
24 HUD 맵이름스크립트 52 file 이안 2010.01.17 3552
23 HUD xp대화창에 얼굴, 이름 넣기!! [방법두 있음] 3 백호 2009.02.21 3545
22 HUD 맵이름표시 ps인간 2009.01.23 3441
21 HUD 시트르산의 나침반 스크립트 19 file 시트르산 2011.01.23 3195
20 HUD 강화 나침반 스크립트 (원본 by 허걱) 16 file JACKY 2010.08.16 3105
» HUD 넷플레이 HUD표시 2 file 백호 2009.02.22 3094
18 HUD HP/SP 상태를 표시해주는 간이 윈도우 3 file 백호 2009.02.21 3067
17 HUD 맵이름 넣기(bs님의 강의랑 다르게 스크립트로) 16 file 아방스 2007.11.09 2981
16 HUD 맵 이름을 표시해주는 스크립트입니다. 25 임희성 2011.02.12 2936
15 HUD 맵이름 스크립트 1 file 긔염둥이♥ 2012.05.19 2913
Board Pagination Prev 1 2 Next
/ 2