Manage Battle Speed
ต้นฉบับ : 
http://xrxs.at-ninja.jp/No114.htm
Version: 1 - สคริปต์เขียนโดย : 
Xiderowg
Articles by: Helel/rmvxp
VDO
ไม่มีวิดีโอนี้เนื่องจากผู้อัปโหลดได้ปิดบัญชี YouTube ของตนแล้ว
รายละเอียด :
..เป็นการเพิ่มความเร็วในฉาก Battle ให้เร็วขึ้น...
โดยปรับตัวเลข ยิ่งมากมันจะเร็วยิ่งขึ้น
โค๊ดสคริปต์
Code:
#==============================================================================
# XRXS No114. Control Battle Speed
#------------------------------------------------------------------------------
# Written by Xiderowg (http://sboox.hp.infoseek.co.jp/xp/)
#
# * FUNCTION
#   Adjust battle speed by configuring the wait upon an effect.
#
# * USAGE
#   Adjust the numerical values.  The higher, the faster.  
#==============================================================================
#==============================================================================
# ** RPG::Sprite
#==============================================================================
class RPG::Sprite
  #--------------------------------------------------------------------------
  # * Effect
  #--------------------------------------------------------------------------
  def effect?
    @_whiten_duration > 16 or    # 0 ~ 16
    @_appear_duration > 16 or    # 0 ~ 16
    @_escape_duration > 32 or    # 0 ~ 32
    @_collapse_duration > 48 or  # 0 ~ 48
    @_damage_duration > 40 or    # 0 ~ 40 
    @_animation_duration > 150   # 0 ~ 200
  end
end