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.

Share | 
 

 [RGSS3] Theo Wounded State

Topik sebelumnya Topik selanjutnya Go down 
[RGSS3] Theo Wounded State Empty2013-02-22, 22:12
Post[RGSS3] Theo Wounded State
#1
TheoAllen 
♫ RMID Rebel ♫
♫ RMID Rebel ♫
TheoAllen

Kosong
Posts : 4935
Thanked : 63
Awards:




[RGSS3] Theo Wounded State Vide
Theo - Wounded State
Versi: 1.0
Tipe: Gameplay


Pengenalan
Secara logika, kalo karakter jumlah HPnya makin sedikit, harusnya performanya juga berkurang. Misalnya, ATK berkurang berapa persen gitu. Well, tentukan sendiri =w=b


Fitur

  • Add state jika HP sudah sekian persen (tentukan di konfigurasi)
  • Plug and play



Screenshots
See by yourself in demo :v


Demo
Ambil disini => https://dl.dropbox.com/u/41797508/VXA/Wounded%20state.exe


Scripts
Ambil disini => http://pastebin.com/raw.php?i=JZSNL2wW
or
Code:
# =============================================================================
# ♫ ~ Wounded state by TheoAllen ~ ♫
# Version : 1.0
# Contact : www.rpgmakerid.com
# =============================================================================
# Requires : N/A
# Rewrites method : N/A
# Alliases method : Game_Battlerbase - refresh
# =============================================================================
# ♫ UPDATES :
# =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
# 2013.02.22 - Started and finished script
#
# =============================================================================
# ♫ DESCRIPTION :
# This script allow you to automatically add state if the characters or enemy
# in wounded condition. To disable this automatic add state for some enemies or
# characters, just simply put resist state in feature system
# =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
# ♫ INSTRUCTION :
# Put this script below material but above main in script editor. Don't forget
# to save.
# =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
# ♫ HOW TO USE :
# Just edit the configuration below
# =============================================================================
# ♫ TERMS OF USE :
# - Credit me, TheoAllen. If you think it's necessary.
# - You may use this script both commercial and non-commercial
# - Do not edit at this time. I still have to do something in this script.
# - I'll be glad if you give me a free copy of your game if you use this script
#  in your commercial project.
# =============================================================================
#
# =============================================================================
# ♫ CONFIGURATIONS ~ ♫
# =============================================================================
module THEOLIZED
  WOUNDED_CONDITION = 0.25 # percentage of wounded condition.
  WOUNDED_STATE_ID = 0    # state ID
end
# =============================================================================
# ♫ Do not edit unless you know what to do ~ ♫
# =============================================================================
class Game_BattlerBase
  #--------------------------------------------------------------------------
  # ♫ Aliased refresh
  #--------------------------------------------------------------------------
  alias theo_wound_refresh refresh
  def refresh
    theo_wound_refresh
    apply_wounded_state
  end
  #--------------------------------------------------------------------------
  # ♫ Check wounded
  #--------------------------------------------------------------------------
  def wounded?
    return hp_rate <= wounded_condition
  end
  #--------------------------------------------------------------------------
  # ♫ Get wounded state id
  #-------------------------------------------------------------------------- 
  def wounded_state_id
    return THEOLIZED::WOUNDED_STATE_ID
  end
  #--------------------------------------------------------------------------
  # ♫ Get wounded condition
  #--------------------------------------------------------------------------
  def wounded_condition
    value = THEOLIZED::WOUNDED_CONDITION
    return 0.25 if value > 1 || value < 0
    return value
  end
  #--------------------------------------------------------------------------
  # ♫ Apply wounded state
  #--------------------------------------------------------------------------
  def apply_wounded_state
    return if wounded_state_id <= 0
    wounded? ? add_state(wounded_state_id) : remove_state(wounded_state_id)
  end
end
# =============================================================================
# ♫ End of Game_BattlerBase class ♫
# =============================================================================


Credits
Tulis aja "TheoAllen" kalo mau :3


Terakhir diubah oleh TheoAllen tanggal 2013-02-23, 08:26, total 1 kali diubah
[RGSS3] Theo Wounded State Empty2013-02-22, 22:17
PostRe: [RGSS3] Theo Wounded State
#2
richter_h 
Salto Master
Hancip RMID
richter_h

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

[RGSS3] Theo Wounded State Vide
nice script =w=b
ane cobanya ntar pagi aja, soale sekarang ada kegiatan rutin :megusta:

dan juga, tambahan buat bikin state inverse (jadi kalo HP makin dikit malah makin gede statnya) :imean:
[RGSS3] Theo Wounded State Empty2013-02-22, 22:20
PostRe: [RGSS3] Theo Wounded State
#3
TheoAllen 
♫ RMID Rebel ♫
♫ RMID Rebel ♫
TheoAllen

Kosong
Posts : 4935
Thanked : 63
Awards:




[RGSS3] Theo Wounded State Vide
@H: itu masuk to do list sih.
Rencananya ntar belajar notetagging biar bisa bikin unique wounded state tiap battler :3
makanya ane nulis di script jangan diedit dulu :kabur:
[RGSS3] Theo Wounded State Empty2013-02-22, 22:23
PostRe: [RGSS3] Theo Wounded State
#4
wltr3565 
Senior
Senior
wltr3565

Level 5
Posts : 870
Thanked : 28
Engine : RMVX
Skill : Skilled
Type : Scripter
Awards:

[RGSS3] Theo Wounded State Vide
Dikata F-Zero ya? Good job, though.
[RGSS3] Theo Wounded State Empty2013-02-22, 22:37
PostRe: [RGSS3] Theo Wounded State
#5
TheoAllen 
♫ RMID Rebel ♫
♫ RMID Rebel ♫
TheoAllen

Kosong
Posts : 4935
Thanked : 63
Awards:




[RGSS3] Theo Wounded State Vide
ga pernah maen :lol:
sbenernya ni system dah kepikiran sejak lama sih :ngacay2:
[RGSS3] Theo Wounded State Empty2013-02-23, 03:34
PostRe: [RGSS3] Theo Wounded State
#6
Kuro Ethernite 
The Creator
Kuro Ethernite

Level 5
Posts : 1631
Thanked : 24
Engine : RMVX Ace
Skill : Masterful
Type : Jack of All Trades
Awards:

[RGSS3] Theo Wounded State Vide
SHOT !!!!
TheoAllen has evolved !!!!

whta's the cause? Struck by lightning?
[RGSS3] Theo Wounded State Empty2013-02-23, 06:20
PostRe: [RGSS3] Theo Wounded State
#7
Deenos 
Advance
Advance
Deenos

Level 5
Posts : 487
Thanked : 7
Engine : RMVX Ace
Skill : Skilled
Type : Databaser
Awards:
[RGSS3] Theo Wounded State Vide
theo bisa bikin script....
kalau dead...
kan udah end battle...
nanti HP Max nya berkurang :3
bisa gak :3
[RGSS3] Theo Wounded State Empty2013-02-23, 07:26
PostRe: [RGSS3] Theo Wounded State
#8
Signus Sanctus 
Newbie
Newbie
Signus Sanctus

Level 5
Posts : 69
Thanked : 3
Engine : RMVX Ace
Skill : Beginner
Type : Developer
Awards:
[RGSS3] Theo Wounded State Vide
goddamn, kenapa harus link ke pastebin seh orz

inet gua gk bisa buka pastebin oi orz
ada fitur "code" kenapa gk dipake, padahal cuma plug & play :hammer:

btw, just asking weird question, decreasing stats e bisa dibawah 50% gk? :hmm:


Terakhir diubah oleh Signus Sanctus tanggal 2013-02-23, 07:30, total 1 kali diubah (Reason for editing : godsh*t, salah ID)
[RGSS3] Theo Wounded State Empty2013-02-23, 08:00
PostRe: [RGSS3] Theo Wounded State
#9
Heartbreak61 
Novice
Novice
avatar

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

[RGSS3] Theo Wounded State Vide
Hmm, nambah State berdasarkan persentase HP ya? :hmm:
BTW kalo diaplikasikan ke skill bisa ndak ya? Jadi misal waktu HP kritis dia malah dapet skill Rage gitu? :kabur:
[RGSS3] Theo Wounded State Empty2013-02-23, 11:52
PostRe: [RGSS3] Theo Wounded State
TheoAllen 
♫ RMID Rebel ♫
♫ RMID Rebel ♫
TheoAllen

Kosong
Posts : 4935
Thanked : 63
Awards:




[RGSS3] Theo Wounded State Vide
@kuro: It's fate :ca:

@nos: :hmm:
belom kepikiran flownya gimana
tapi noted =w=b

@NR: :lol:
Aslinya gw g suka fitur code gara2 g bisa baca whole scriptnya =))
Well, tapi udah gw keluarin dari pastebin =w=b
Btw, ini konsepnya add state. jadi u bikin statenya terserah kaek gimana.
sbenernya ga plug n play bneran sih. =))

@HB: udah ada punyanya yanfly hide skill command :hammer:
[RGSS3] Theo Wounded State Empty
PostRe: [RGSS3] Theo Wounded State
Sponsored content 




[RGSS3] Theo Wounded State Vide
 

[RGSS3] Theo Wounded State

Topik sebelumnya Topik selanjutnya Kembali Ke Atas 

Similar topics

+
Halaman 1 dari 1

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