RPGXP 스크립트
2013.09.24 08:08

경험치 표시 스크립트

조회 수 750 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

class Game_Actor < Game_Battler 
  def exp_rate 
    if @exp_list[@level+1] - @exp_list[@level] > 0 
      return (@exp - @exp_list[@level]).to_f / (@exp_list[@level+1] - @exp_list[@level]).to_f 
    else 
      return 0 
    end 
  end 
end 
class Window_ExpRate < Window_Base 
  def initialize 
    super(0, 0, 125, 55) # <- location, size 
    self.contents = Bitmap.new(width - 32, height - 32) 
    
    self.contents.font = Font.new("궁서체", 16) # <- font, size 
    self.opacity = 0 
self.back_opacity = 0 
  end 
  def refresh 
    self.contents.clear 
    self.contents.draw_text(0, 0, 100, 30, @show_text) 
  end 
  def actor 
    $game_party.actors[0] # <- 파티 0번째 
  end 
  def update 
    super 
    text = sprintf("경험치: %d%%", (actor.exp_rate * 100).to_i) 
    if @show_text != text 
      @show_text = text 
      refresh 
    end 
  end 
end 
class Scene_Map 
  alias update_before_map update 
  def update 
    update_before_map 
    @window_exp = Window_ExpRate.new unless @window_exp 
    @window_exp.update 
    unless $scene.is_a?(Scene_Map) 
      @window_exp.dispose 
      @window_exp = nil 
    end 
  end 
end 


출처: 게임공작소

?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수 추천 수
208 RPGMV 플러그인 타이틀 스크린 스킵 file 공원소년 2015.11.03 1020 0
207 RPGMV 플러그인 커스텀 숫자 입력 패드 1 file 러닝은빛 2018.10.19 1020 0
206 RPGXP 스크립트 장비제련 스크립트 청담 2013.09.24 1026 0
205 RPGXP 스크립트 아이디 띄우기 7 청담 2013.09.24 1030 0
204 RPGXP 스크립트 타이틀 스크립트 3  운 2014.12.05 1034 0
203 RPGMV 플러그인 Hidden Shop Goods (못사는 물건은 아예 숨겨지게 하는 플러그인) 파란별빛 2015.11.09 1039 0
202 RPGMV 플러그인 한국어 조사 (은/는/이/가) 처리 플러그인 입니다. 2 file 파란별빛 2015.10.24 1040 0
201 RPGVX Ace 스크립트 [VXAce] 레이어 맵 <layer> 시스템 file LuD 2017.08.07 1046 0
200 RPGMV 플러그인 Bind Pictures To Map (이미지 결합 플러그인) 3 file 이녕 2015.10.30 1051 0
199 RPGXP 스크립트 아이템 갯수 제한 2013.10.01 1063 0
198 RPGXP 스크립트 죽었을경우 마을로이동 스크립트 1 청담 2013.09.24 1067 0
197 RPGMV 플러그인 맵상에서 캐릭터 스프라이트 이미지를 offset해주는 플러그인 file lklslel 2016.07.19 1075 0
196 RPGXP 스크립트 대기 회복 스크립트 2013.10.01 1078 0
195 RPGXP 스크립트 레벨업시 능력치 표시 4 2013.10.01 1081 0
194 RPGXP 스크립트 타이틀 로딩 스크립트  운 2014.12.07 1081 0
193 RPGXP 스크립트 UNR (아시려나... ) - 상태 이상 file 동동주 2013.01.20 1085 0
192 RPGXP 스크립트 [아힝흥행]레벨한계 돌파 스크립트 3 아힝흥행 2013.09.24 1099 0
191 RPGMV 플러그인 전투속도 고속화 플러그인. 1 file 파란별빛 2015.10.24 1103 0
190 RPGXP 스크립트 횡스크롤 스크립트 3  운 2013.09.27 1107 0
189 RPGMV 플러그인 Weather EX 날씨 확장 플러그인입니다. 2 BeeBee 2016.01.03 1111 0
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 15 Next
/ 15






[개인정보취급방침] | [이용약관] | [제휴문의] | [후원창구] | [인디사이드연혁]

Copyright © 1999 - 2016 INdiSide.com/(주)씨엘쓰리디 All Rights Reserved.
인디사이드 운영자 : 천무(이지선) | kernys(김원배) | 사신지(김병국)