| [RGSS3] Theo Wounded State | |
|
+3wltr3565 richter_h TheoAllen 7 posters |
Pengirim | Message |
---|
TheoAllen ♫ RMID Rebel ♫
Posts : 4935 Thanked : 63
Trophies
Awards:
| Subyek: [RGSS3] Theo Wounded State 2013-02-22, 22:12 | |
| Theo - Wounded State Versi: 1.0 Tipe: Gameplay PengenalanSecara logika, kalo karakter jumlah HPnya makin sedikit, harusnya performanya juga berkurang. Misalnya, ATK berkurang berapa persen gitu. Well, tentukan sendiri Fitur
- Add state jika HP sudah sekian persen (tentukan di konfigurasi)
- Plug and play
ScreenshotsSee by yourself in demo DemoAmbil disini => https://dl.dropbox.com/u/41797508/VXA/Wounded%20state.exe ScriptsAmbil 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 ♫ # ============================================================================= CreditsTulis aja "TheoAllen" kalo mau
Terakhir diubah oleh TheoAllen tanggal 2013-02-23, 08:26, total 1 kali diubah | |
|
| |
richter_h Salto Master Hancip RMID
Posts : 1705 Thanked : 30 Engine : Other Skill : Skilled Type : Developer
Trophies
Awards:
| Subyek: Re: [RGSS3] Theo Wounded State 2013-02-22, 22:17 | |
| nice script ane cobanya ntar pagi aja, soale sekarang ada kegiatan rutin dan juga, tambahan buat bikin state inverse (jadi kalo HP makin dikit malah makin gede statnya) | |
|
| |
TheoAllen ♫ RMID Rebel ♫
Posts : 4935 Thanked : 63
Trophies
Awards:
| |
| |
wltr3565 Senior
Posts : 870 Thanked : 28 Engine : RMVX Skill : Skilled Type : Scripter
Trophies
Awards:
| Subyek: Re: [RGSS3] Theo Wounded State 2013-02-22, 22:23 | |
| Dikata F-Zero ya? Good job, though. | |
|
| |
TheoAllen ♫ RMID Rebel ♫
Posts : 4935 Thanked : 63
Trophies
Awards:
| |
| |
Kuro Ethernite The Creator
Posts : 1631 Thanked : 24 Engine : RMVX Ace Skill : Masterful Type : Jack of All Trades
Trophies
Awards:
| Subyek: Re: [RGSS3] Theo Wounded State 2013-02-23, 03:34 | |
| SHOT !!!! TheoAllen has evolved !!!!
whta's the cause? Struck by lightning? | |
|
| |
Deenos Advance
Posts : 487 Thanked : 7 Engine : RMVX Ace Skill : Skilled Type : Databaser
Trophies
Awards: | Subyek: Re: [RGSS3] Theo Wounded State 2013-02-23, 06:20 | |
| theo bisa bikin script.... kalau dead... kan udah end battle... nanti HP Max nya berkurang bisa gak | |
|
| |
Signus Sanctus Newbie
Posts : 69 Thanked : 3 Engine : RMVX Ace Skill : Beginner Type : Developer
Trophies
Awards: | Subyek: Re: [RGSS3] Theo Wounded State 2013-02-23, 07:26 | |
| goddamn, kenapa harus link ke pastebin seh inet gua gk bisa buka pastebin oi ada fitur "code" kenapa gk dipake, padahal cuma plug & play btw, just asking weird question, decreasing stats e bisa dibawah 50% gk?
Terakhir diubah oleh Signus Sanctus tanggal 2013-02-23, 07:30, total 1 kali diubah (Reason for editing : godsh*t, salah ID) | |
|
| |
Heartbreak61 Novice
Posts : 177 Thanked : 4 Engine : RMVX Ace Skill : Very Beginner Type : Event Designer
| Subyek: Re: [RGSS3] Theo Wounded State 2013-02-23, 08:00 | |
| Hmm, nambah State berdasarkan persentase HP ya? BTW kalo diaplikasikan ke skill bisa ndak ya? Jadi misal waktu HP kritis dia malah dapet skill Rage gitu? | |
|
| |
TheoAllen ♫ RMID Rebel ♫
Posts : 4935 Thanked : 63
Trophies
Awards:
| Subyek: Re: [RGSS3] Theo Wounded State 2013-02-23, 11:52 | |
| | |
|
| |
Sponsored content
| Subyek: Re: [RGSS3] Theo Wounded State | |
| |
|
| |
| [RGSS3] Theo Wounded State | |
|