XP 스크립트

이건 비밀님이랑 KimTJ 님이 알려줄셔서 간신히 했음. 이 스크립트는 왼쪽 아래 구석에 경험치가 하얀글씨로 나올것임.

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(178, 441, 100, 60) # <- location, size
    self.contents = Bitmap.new(width - 32, height - 32)
   
    self.contents.font = Font.new("Tahoma", 30) # <- 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

Comment '8'

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 습작 2012.12.24 6202
401 온라인 멀티넷 스크립트 수정본 (약간 한글화) 7 백호 2009.02.22 2315
400 저장 멀티넷스크립트 -> 아이피 세이브,로드 스크립트 9 file 백호 2009.02.22 2206
399 온라인 멀티넷스크립트 => 채팅보완 스크립트 8 file 백호 2009.02.22 2931
398 온라인 멀티넷플레이 99Q Beta 3 27 백호 2009.02.22 3107
397 이동 및 탈것 멈췄을때 행동. 17 file Bera 2010.10.17 3408
396 기타 멋진...제작자 정보를 그림으로 1 백호 2009.02.22 1233
395 메뉴 메뉴 단축키 스크립트 14 백호 2009.02.22 2961
394 메뉴 메뉴 변경 스크립트 2 file 백호 2009.02.21 2360
393 메뉴 메뉴 화면 개조 스크립트 1 백호 2009.02.21 1668
392 메뉴 메뉴 화면 변경 스크립트 file 백호 2009.02.21 2237
391 메뉴 메뉴....있길래올립니다. 9 벨☆ 2010.01.23 2001
390 메뉴 메뉴등에서 움직이는 엑터 9 file 백호 2009.02.22 3164
389 메뉴 메뉴를 바꾸는 스크립트 14 №1 2012.08.04 4214
388 메뉴 메뉴바꾸기 4 file ureazy 2012.07.23 2847
387 변수/스위치 메뉴변수표시 스크립트 1 file 백호 2009.02.22 1644
386 메뉴 메뉴에 그림넣기 4 file 백호 2009.02.22 4415
385 메뉴 메뉴에 얼굴 그래픽 표시 4 file 백호 2009.02.21 3113
384 메뉴 메뉴에서 실제시간 보기 2 백호 2009.02.21 1124
383 메뉴 메뉴에서 커맨더실행하기 5 WMN 2008.04.06 1682
382 파티 메뉴커맨드로 파티 멤버들 순서 바꾸기 by Yargovish 1 백호 2009.02.22 1622
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