XP 스크립트

제작자 : 비밀소년

이번에도 어제 막 만든 스크립트 입니다 ^^

#=================================================
# ■ 경험치 직접 정하기
#-------------------------------------------------
#  Author: Bimilist(비밀소년)
#  Desc: 경험치를 직접 수작업으로 정함
#=================================================
class Game_Actor < Game_Battler
  #--------------------------------------------------------------------------
  # ● EXP 계산의 원본. 참조용으로 내비뒀습니다. (놔둬도 지장없음)
  # 수학적인 공식으로 1~99의 경험치를 정하는 거죠.
  #--------------------------------------------------------------------------
  def make_exp_list
    actor = $data_actors[@actor_id]
    @exp_list[1] = 0
    pow_i = 2.4 + actor.exp_inflation / 100.0
    for i in 2..100
      if i > actor.final_level
        @exp_list[i] = 0
      else
        n = actor.exp_basis * ((i + 3) ** pow_i) / (5 ** pow_i)
        @exp_list[i] = @exp_list[i-1] + Integer(n)
      end
    end
  end
  #------------------------------------------------
  # ● 이번에는 수작업으로 정하는 방법입니다.
  #------------------------------------------------
  def make_exp_list
    actor = $data_actors[@actor_id]
    @exp_list[1] = 0
    @exp_list[2] = 20
    @exp_list[3] = 50
    @exp_list[4] = 90
    @exp_list[5] = 140
    @exp_list[6] = 150
    @exp_list[7] = 160
    @exp_list[8] = 200
    @exp_list[9] = 290
    @exp_list[10] = 300
    @exp_list[11] = 400
    @exp_list[12] = 600
    @exp_list[13] = 900
    @exp_list[14] = 1000
    @exp_list[15] = 2340
    @exp_list[16] = 3450
    @exp_list[17] = 4560
    @exp_list[18] = 5670
    @exp_list[19] = 7890
    @exp_list[20] = 9010
    @exp_list[21] = 12340
    @exp_list[22] = 23450
    @exp_list[23] = 25670
    @exp_list[24] = 36580
    @exp_list[25] = 67970
    @exp_list[26] = 245768
    @exp_list[27] = 246768
    @exp_list[28] = 247768
    @exp_list[29] = 248768
    @exp_list[30] = 249768
    @exp_list[31] = 255768
    @exp_list[32] = 265768
    @exp_list[33] = 275768
    @exp_list[34] = 500000
    @exp_list[35] = 510000
    @exp_list[36] = 520000
    @exp_list[37] = 530000
    @exp_list[38] = 540000
    @exp_list[39] = 550000
    @exp_list[40] = 560000
    @exp_list[41] = 570000
    @exp_list[42] = 580000
    @exp_list[43] = 590000
    @exp_list[44] = 591000
    @exp_list[45] = 592000
    @exp_list[46] = 593000
    @exp_list[47] = 595000
    @exp_list[48] = 597000
    @exp_list[49] = 599000
    @exp_list[50] = 599999
    @exp_list[51] = 600000
    @exp_list[52] = 700000
    @exp_list[53] = 800000
    @exp_list[54] = 900000
    @exp_list[55] = 990000
    @exp_list[56] = 999000
    @exp_list[57] = 1000000
    @exp_list[58] = 2000000
    @exp_list[59] = 3000000
    @exp_list[60] = 4000000
    @exp_list[61] = 5000000
    @exp_list[62] = 6000000
    @exp_list[63] = 6100000
    @exp_list[64] = 6200000
    @exp_list[65] = 6300000
    @exp_list[66] = 6400000
    @exp_list[67] = 7000000
    @exp_list[68] = 7100000
    @exp_list[69] = 7200000
    @exp_list[70] = 9999999
    @exp_list[71] = 9999999
    @exp_list[72] = 9999999
    @exp_list[73] = 9999999
    @exp_list[74] = 9999999
    @exp_list[75] = 9999999
    @exp_list[76] = 9999999
    @exp_list[77] = 9999999
    @exp_list[78] = 9999999
    @exp_list[79] = 9999999
    @exp_list[80] = 9999999
    @exp_list[81] = 9999999
    @exp_list[82] = 9999999
    @exp_list[83] = 9999999
    @exp_list[84] = 9999999
    @exp_list[85] = 9999999
    @exp_list[86] = 9999999
    @exp_list[87] = 9999999
    @exp_list[88] = 9999999
    @exp_list[89] = 9999999
    @exp_list[90] = 9999999
    @exp_list[91] = 9999999
    @exp_list[92] = 9999999
    @exp_list[93] = 9999999
    @exp_list[94] = 9999999
    @exp_list[95] = 9999999
    @exp_list[96] = 9999999
    @exp_list[97] = 9999999
    @exp_list[98] = 9999999
    @exp_list[99] = 9999999
    @exp_list[100] = 9999999
  end
end

Who's 백호

?

이상혁입니다.

http://elab.kr

Comment '9'

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 습작 2012.12.24 6154
721 아이템 소지/구입 아이템 갯수 99개 이상 가능(약간 수정) 2 백호 2009.02.22 1104
720 변수/스위치 셀프 스위치 조작 10 file 허걱 2009.01.30 2655
719 저장 세이브파일 망가뜨리기 by RPG Advocate 3 백호 2009.02.22 2657
718 저장 세이브 슬롯 갯수 증가와 세이브 덮어씌울 때 확인 by RPG Advocate 5 백호 2009.02.22 1505
717 저장 세이브 & 로드 화면 개조 스크립트 file 백호 2009.02.21 1962
716 스킬 선택 스킬 스크립트 4 file 백호 2009.02.21 1631
715 HUD 새로운방법의 맵이름 표시 31 file 백호 2009.02.21 4618
714 이동 및 탈것 새로운 픽셀 이동 스크립트 27 file 케나이 2010.04.10 3496
713 메뉴 새로운 메뉴 시스템 을 한글화 및 약간 개조 3 file 백호 2009.02.21 2203
712 메뉴 새로운 메뉴 15 file 또라에몽 2010.07.17 5305
711 메뉴 새로운 cms 4 file 백호 2009.02.22 2118
710 상태/속성 상태창 표시 Ver 8.0 // 글씨 위치 변경 기능 + 변수 한글 7 file 코아 코스튬 2010.09.24 2562
709 상점 상점에서 Q.W버튼으로 순서를 바꿈!상점스텟 상세화 업그레이드 1 백호 2009.02.21 1714
708 상점 상점에 물방,마방 구별, 무기의 능력치 상세화 5 file 백호 2009.02.21 2512
707 상점 상점아템 가격변동(중뷁?) 4 캉쿤 2011.09.14 2188
706 상점 상점 직접 장비 스크립트 1 file 백호 2009.02.21 1771
705 상점 상점 시세 변동 스크립트 수정판 3 백호 2009.02.22 1518
704 기타 상점 변동시세 적용 스크립트 3 file 백호 2009.02.21 1163
703 상점 상점 메뉴 개조시킨 스크립트 [한글] 35 file 백호 2009.02.21 3567
702 상점 상점 메뉴 개조시킨 스크립트 - 수정 - 2 file 백호 2009.02.21 1818
Board Pagination Prev 1 ... 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 ... 52 Next
/ 52