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 6203
254 기타 [All RGSS] FileTest (Unicode) file Cheapmunk 2014.12.29 614
253 기타 에어리어 설정 by RPG Advocate 백호 2009.02.22 710
252 기타 Boat Script 백호 2009.02.21 729
251 기타 Localization by ForeverZer0, KK20 습작 2013.04.26 738
250 기타 Materia System file 백호 2009.02.21 749
249 기타 Real-Time Day Night 3 백호 2009.02.22 751
248 기타 killer님 요청하신 스크립트 두번째입니다. 나뚜루 2009.02.21 759
247 기타 Letter by Letter Message Window by slipknot@rmxp.org (SDK호환) 1 file 백호 2009.02.22 760
246 기타 Advanced Gold display by Dubealex 1 백호 2009.02.22 761
245 기타 Sphere Grid System file 백호 2009.02.21 765
244 기타 AMS-Advanced Message Script Edited by Dubleax 3 file 백호 2009.02.21 766
243 기타 Activation_system file 백호 2009.02.22 775
242 기타 Terrain Encounter Areas by SephirothSpawn 백호 2009.02.22 778
241 기타 Damage Reductions by SephirothSpawn (SDK호환) 1 백호 2009.02.22 779
240 기타 killer님 요청하신 스크립트입니다. 1 나뚜루 2009.02.21 784
239 기타 Selected phyolomortis.com scripts 1 file 백호 2009.02.22 789
238 기타 Hero Databass 4 file 백호 2009.02.22 797
237 기타 SG_Multiple Currencies v3 by sandgolem (SDK호환) 백호 2009.02.22 803
236 기타 SG_Call Script Fix by sandgolem (SDK호환) 백호 2009.02.22 804
235 기타 Weather Script 1.02 by ccoa 1 file 백호 2009.02.22 810
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 12 13 Next
/ 13