XP 스크립트

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


그냥 윈도우 표시 안한거하고 좌표만 바꾼것,,,, ㅠㅠ

Who's 백호

?

이상혁입니다.

http://elab.kr


List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 습작 2012.12.24 6203
401 전투 XAS 여러가지버전. 9 §포뇨§ 2010.02.23 4396
400 전투 XAS Hero Edition Ver. 3.91 3 프리즌커피 2011.12.23 3899
399 전투 XAS Hero Edition v3.82 19 아방스 2010.12.27 4347
398 맵/타일 World Map 스크립트 1 file 백호 2009.02.21 1983
397 맵/타일 World Map version 1.2 11 백호 2009.02.22 2962
396 이동 및 탈것 World Map & Teleporter by SephirothSpawn 2 file 백호 2009.02.22 1156
395 저장 Woratana's Neo Save System for RMXP by LiTTleDRAgo 5 Alkaid 2013.01.19 1399
394 오디오 WinAMP 플러그인을 이용하여 RMXP에서 다른 형식의 음악파일 재생하기 file 백호 2009.02.22 1259
393 오디오 WinAMP 플러그인을 이용하여 RMXP에서 다른 사운드포맷 지원하기 v3 by Guillame777@rmxp.net 백호 2009.02.22 936
392 메시지 WhiteFlute 멀티메시지 스크립트 (XP/VX/VXA) 4 Alkaid 2013.02.05 2268
391 그래픽 WhiteFlute - BitmapEX 4 file JACKY 2012.12.10 2955
390 오디오 WhiteFlute - AudioEX (XP/VX/VXA) file Alkaid 2012.12.26 1257
389 그래픽 Weather Script(버전 불명) by ccoa 1 file Alkaid 2010.09.08 1572
388 기타 Weather Script 1.02 by ccoa 1 file 백호 2009.02.22 810
387 그래픽 Weather Creator 1.0 by ForeverZer0 2 file Alkaid 2011.01.22 1922
386 기타 Upload & Download files with RGSS 2.1 by berka (XP/VX 공용) 5 Alkaid 2010.11.20 2138
385 메시지 Universal Message System 1.8.0 by ccoa 번역 4 file PerrS 2013.04.06 1739
384 메시지 Universal Message System 1.8.0 by ccoa 1 file Alkaid 2010.09.08 2185
383 메시지 UCoder's Message System by Mr.Mo file Alkaid 2010.10.05 1543
382 메시지 txt 메세징 스크립트 4 에돌이 2011.07.12 2199
Board Pagination Prev 1 ... 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 ... 52 Next
/ 52