RPGMakerID
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Komunitas RPG Maker Indonesia
 
IndeksIndeks  Latest imagesLatest images  PencarianPencarian  PendaftaranPendaftaran  Login  
Per 2016, RMID pindah ke RMID Discord (Invite link dihapus untuk mencegah spambot -Theo @ 2019). Posting sudah tidak bisa dilakukan lagi.
Mohon maaf atas ketidaknyamanannya dan mohon kerjasamanya.

 

 Custom EXP Curve

Go down 
3 posters
PengirimMessage
richter_h
Salto Master
Hancip RMID
richter_h


Kosong
Posts : 1705
Thanked : 30
Engine : Other
Skill : Skilled
Type : Developer

Trophies
Awards:

Custom EXP Curve Empty
PostSubyek: Custom EXP Curve   Custom EXP Curve Empty2012-06-15, 23:17

Simple EXP Curve
Versi: 1.0
Tipe: Actor Customization


Pengenalan

Pertamanya ini buat di game Wandering Brawler sama Legend of Seven Swords
Skrip ini bakalan ngeset dan MAKSA semua aktor buat punya EXP curve yang sama.

Ada dua variabel yang bisa diedit:
- Base: buat nentuin Base EXP
- Add: buat nentuin tambahan poin EXP per level


Fitur


  • Ngeset EXP curve statis buat semua aktor
  • MAKSA semua aktor buat dapet EXP curve yang sama
  • Lebih dimengerti buat ane dalam masalah EXP gains dan level up :hammer:



Screenshots

Coba dan buktikan saja 8)


Demo

Ngga perlu kayaknya :D


Scripts

Code:
# ==============================================================================
# Fixed Stead EXP system
# Used for Legend of Seven Swords and Wandering Brawler Game
# Set and force actors to have the same EXP amounts, regardless in actor EXP
# gain tab in database.
# ==============================================================================
module EXP_Gain
  Base = 16
  Add = 2
end

class Game_Actor < Game_Battler
  def make_exp_list
    @exp_list[1] = @exp_list[100] = 0
    base = EXP_Gain::Base
    add = EXP_Gain::Add
    @exp_list[2] = base
    for i in 3..99
      base += add
      @exp_list[i] = @exp_list[i-1] + Integer(base)
    end
  end
end


Credits


  • Credit ane, richter_h, kalo ente mau. Asal jangan ngaku ini skrip bikinan ente aja :D


Kembali Ke Atas Go down
http://ryann.creatvwrkr.com
vanchamakh
Newbie
Newbie
vanchamakh


Level 5
Posts : 5
Thanked : 0
Engine : RMVX
Skill : Beginner
Type : Artist

Custom EXP Curve Empty
PostSubyek: Re: Custom EXP Curve   Custom EXP Curve Empty2013-02-07, 04:17

Ajib lah kk,,, ngomong ngomong lvl cuman ampe 99 ya gka bisa lebih??
Kembali Ke Atas Go down
Heartbreak61
Novice
Novice
avatar


Level 5
Posts : 177
Thanked : 4
Engine : RMVX Ace
Skill : Very Beginner
Type : Event Designer

Custom EXP Curve Empty
PostSubyek: Re: Custom EXP Curve   Custom EXP Curve Empty2013-02-07, 10:15

kalo mau lebih, vanchamakh juga harus set param seperti MHP, ATK, dll juga secara manual juga karena di sistem default, param hanya di set sampe level 99 juga. CMIIW
Kembali Ke Atas Go down
richter_h
Salto Master
Hancip RMID
richter_h


Kosong
Posts : 1705
Thanked : 30
Engine : Other
Skill : Skilled
Type : Developer

Trophies
Awards:

Custom EXP Curve Empty
PostSubyek: Re: Custom EXP Curve   Custom EXP Curve Empty2013-02-07, 16:09

vanchamakh wrote:
Ajib lah kk,,, ngomong ngomong lvl cuman ampe 99 ya gka bisa lebih??

sementara ane ngikut sama yang ada di database
well, ane mesti rombak lagi stat growthnya secara hardcode kalo pengen lebih dari 99

lagian, emang ente mo bikin game yang mesti karakternya nyampe level lebih dari 100?
Kembali Ke Atas Go down
http://ryann.creatvwrkr.com
Sponsored content





Custom EXP Curve Empty
PostSubyek: Re: Custom EXP Curve   Custom EXP Curve Empty

Kembali Ke Atas Go down
 
Custom EXP Curve
Kembali Ke Atas 
Halaman 1 dari 1
 Similar topics
-
» [ASK] Custom Script
» Help Custom message
» Need Custom Menu System!
» help buat custom menu
» [REQUEST] custom HUD Blizz-ABS

Permissions in this forum:Anda tidak dapat menjawab topik
RPGMakerID :: Scripts & Event Systems :: RMVX Scripts-
Navigasi: