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.
|
|
| weapon instan skill plzzz | |
| 2011-01-26, 18:55 | weapon instan skill plzzz |
---|
rezpect Novice
Posts : 109 Thanked : 0 Engine : RMXP Skill : Beginner Type : Event Designer
| maap sbelumnya cma bsa mnta2 doank. . dan mhon bntuannya.!! kk senoir dsne da yg bsa bntuin bkinin ane script skill snjta. . yg mna tu snjta klo dpke ngeluarin instan skill. . tpi tnpa mengurangi mp/sp. . . terimaksih sebelum dan sesudahnya |
| | | 2011-01-27, 12:04 | Re: weapon instan skill plzzz |
---|
LiTTleDRAgo Senior
Posts : 712 Thanked : 27 Engine : RMXP Skill : Skilled Type : Scripter
Awards:
| battle system yg dipake apaan? |
| | | 2011-01-27, 12:54 | Re: weapon instan skill plzzz |
---|
NachtEinhorn Robot Gedek Galak
Posts : 1274 Thanked : 9 Engine : Multi-Engine User Skill : Beginner Type : Developer
| uda keliatan dia request di subfor RMXP jelaslah dia make RMXP LOL. |
| | | 2011-01-27, 14:44 | Re: weapon instan skill plzzz |
---|
Call me "Doc" Newbie
Posts : 10 Thanked : 0 Engine : RMVX Skill : Beginner Type : Scripter
| moga bisa bantu, kemarin saya coba nih script, jangan lupa creditnya sama Ryex - Spoiler:
- Code:
-
#============================================================================= # # ** Ryex's Weapons Unleash Skills # #----------------------------------------------------------------------------- # # By Ryex # V 1.22 # #----------------------------------------------------------------------------- # # Features # # * Allows Weapons to have a chance to "Unleash" skills from the database # * Customizable unleash rates / chance to unleash for every weapon # # # #----------------------------------------------------------------------------- # # Instructions # # Place in a new script above main then fill out the Configuration. # #============================================================================== module RPG class Weapon def unleash_id(id) case id #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # START Configuration for the skills weapons unleash # Use when <WeaponID> then return <ID of Unleash skill> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: when 1 then return 7 when 5 then return 10 when 25 then return 19 when 29 then return 22 #add new lines here #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # END Configuration #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: end return 0 end def unleash_chance(id) case id #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # START Configuration for unleash chance. # this must be filled out other wise weapons will NEVER unleash # Use when <WeaponID> then return <% chance of unleash (a # 0 - 100)> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: when 1 then return 100 when 5 then return 50 when 25 then return 25 when 29 then return 75 #add new lines here #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # END Configuration #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: end return false end end end class Game_BattleAction attr_accessor :unleash alias ryex_WUS_GBattleAction_clear_later clear def clear @unleash = false ryex_WUS_GBattleAction_clear_later end end class Scene_Battle
alias ryex_WUS_SBattle_update_phase4_step2_later update_phase4_step2 def update_phase4_step2 if @active_battler.is_a?(Game_Actor) if @active_battler.current_action.basic == 0 unless $data_weapons[@active_battler.weapon_id].unleash_chance(@active_battler.weapon_id) == false if rand(100) <= ($data_weapons[@active_battler.weapon_id].unleash_chance(@active_battler.weapon_id)) @active_battler.current_action.kind = 1 @active_battler.current_action.skill_id = $data_weapons[@active_battler.weapon_id].unleash_id(@active_battler.weapon_id) @active_battler.current_action.unleash = true else @active_battler.current_action.unleash = false end else @active_battler.current_action.unleash = false end end end ryex_WUS_SBattle_update_phase4_step2_later end alias ryex_WUS_SBattle_make_skill_action_result_later make_skill_action_result def make_skill_action_result if @active_battler.current_action.unleash == true # Get skill @skill = $data_skills[@active_battler.current_action.skill_id] @active_battler.current_action.unleash = false @status_window.refresh # Show skill name on help window @help_window.set_text(@active_battler.name+"'s Weapon Unleashes "+@skill.name, 1) # Set animation ID @animation1_id = @skill.animation1_id @animation2_id = @skill.animation2_id # Set command event ID @common_event_id = @skill.common_event_id # Set target battlers set_target_battlers(@skill.scope) # Apply skill effect for target in @target_battlers target.skill_effect(@active_battler, @skill) end else ryex_WUS_SBattle_make_skill_action_result_later end @active_battler.current_action.unleash = false end end
demonya media fire |
| | | 2011-01-27, 21:01 | Re: weapon instan skill plzzz |
---|
rezpect Novice
Posts : 109 Thanked : 0 Engine : RMXP Skill : Beginner Type : Event Designer
| - Quote :
- battle system yg dipake apaan?
pke blizzabs kk @doc oke kk tes dlo. . thx sebelumnya EDIT: maap kk doc ntu demonya kok g da filenya??? ato ane yg slah??, . . mank pa nma file demonya kk(maklum nubi mode on) |
| | | 2011-01-28, 15:01 | Re: weapon instan skill plzzz |
---|
Call me "Doc" Newbie
Posts : 10 Thanked : 0 Engine : RMVX Skill : Beginner Type : Scripter
| kalo yg ABS - Spoiler:
- Code:
-
#============================================================================= # # ** Ryex's Weapons Unleash Skills BABS version # #----------------------------------------------------------------------------- # # By Ryex # V 1.00 # #----------------------------------------------------------------------------- # # Features # # * Allows Weapons to have a chance to "Unleash" skills from the database # * Customizable unleash rates / chance to unleash for every weapon # # # #----------------------------------------------------------------------------- # # Instructions # # Place in a new script above main then fill out the Configuration. # #============================================================================== module RPG class Weapon def unleash_id(id) case id #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # START Configuration for the skills weapons unleash # Use when <WeaponID> then return <ID of Unleash skill> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: when 1 then return 7 when 5 then return 10 when 25 then return 19 when 29 then return 22 #add new lines here #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # END Configuration #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: end return 0 end def unleash_chance(id) case id #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # START Configuration for unleash chance. # this must be filled out other wise weapons will NEVER unleash # Use when <WeaponID> then return <% chance of unleash (a # 0 - 100)> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: when 1 then return 100 when 5 then return 50 when 25 then return 25 when 29 then return 75 #add new lines here #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # END Configuration #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: end return false end end end class class Game_Actor < Game_Battler attr_accessor :unleash alias ryex_WUS_GActor_init_later initialize def initialize(actor_id) @unleash = false ryex_WUS_GActor_init_later(actor_id) end end class Map_Actor < Map_Battler
def use_attack unless $data_weapons[@battler.weapon_id].unleash_chance(@battler.weapon_id) == false if rand(100) <= ($data_weapons[@battler.weapon_id].unleash_chance(@battler.weapon_id)) use_skill($data_skills[$data_weapons[@battler.weapon_id].unleash_id(@battler.weapon_id]) @battler.unleash = ture end end return super end alias ryex_WUS_Map_Actor_use_skill_latter use_skill def use_skill(skill) #if this skill in a waepon unleash if @battler.unleash @battler.hpdamage = @battler.spdamage = 0 # call common event common_event_call(skill) # set usage animation set_usage_animation(skill) # set up user damage display if necessary user_damage_display # reset action self.reset_action # if using skill sprites for this type of battler if BlizzABS::Config::A_SKILL_SPRITES # setup sprite extension with ID setup_sprites("_skl#{skill.id}") else # setup sprite extension setup_sprites('_skl') end @battler.unleash = false return true else ryex_WUS_Map_Actor_use_skill_latter(skill) end end
end
demonya hapus tanda bintang dalam kata media*fire semoga bisa membantu -DOC- |
| | | 2011-01-28, 16:05 | Re: weapon instan skill plzzz |
---|
bungatepijalan Moe Princess
Posts : 1487 Thanked : 30 Engine : Multi-Engine User Skill : Intermediate Type : Developer
Awards:
| Atau kalo pake blizz ABS, plg coba deh dioprek2, meski isinya rumit Sori ane sendiri gatau caranya |
| | | 2011-01-29, 11:54 | Re: weapon instan skill plzzz |
---|
rezpect Novice
Posts : 109 Thanked : 0 Engine : RMXP Skill : Beginner Type : Event Designer
| @DOC oce cba pas kompi ane dah di perbaiki - Quote :
- demonya hapus tanda bintang dalam kata media*fire
dah dhapus kk. . .tpi pas w msuk web ntu. . .cma nangkring d halaman depan doank. . kan biasanya langsung k file yg mw d DL??? ato demonya dah ke delete??? |
| | | 2011-01-29, 12:17 | Re: weapon instan skill plzzz |
---|
LiTTleDRAgo Senior
Posts : 712 Thanked : 27 Engine : RMXP Skill : Skilled Type : Scripter
Awards:
| - Milan Nacht wrote:
- uda keliatan dia request di subfor RMXP
jelaslah dia make RMXP LOL. kebodohan masa kini yang gw tanya itu dia pake default battle system, sideview battle system, apa ABS !? nih kalo pake Blizz ABS - Code:
-
#============================================================================= # # ** Ryex's Weapons Unleash Skills BABS version # #----------------------------------------------------------------------------- # # By Ryex # V 1.01 # #----------------------------------------------------------------------------- # # Features # # * Allows Weapons to have a chance to "Unleash" skills from the database # * Customizable unleash rates / chance to unleash for every weapon # # # #----------------------------------------------------------------------------- # # Instructions # # Place in a new script above main then fill out the Configuration. # #============================================================================== module RPG class Weapon def unleash_id(id) case id #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # START Configuration for the skills weapons unleash # Use when <WeaponID> then return <ID of Unleash skill> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: when 1 then return 7 #add new lines here #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # END Configuration #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: end return 0 end def unleash_chance(id) case id #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # START Configuration for unleash chance. # this must be filled out other wise weapons will NEVER unleash # Use when <WeaponID> then return <% chance of unleash (a # 0 - 100)> #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: when 1 then return 50 #add new lines here #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # END Configuration #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: end return false end end end class Game_Actor < Game_Battler attr_accessor :unleash alias ryex_WUS_GActor_init_later initialize def initialize(actor_id) @unleash = false ryex_WUS_GActor_init_later(actor_id) end end class Map_Actor < Map_Battler
def use_attack unless $data_weapons[@battler.weapon_id].unleash_chance(@battler.weapon_id) == false if rand(100) <= ($data_weapons[@battler.weapon_id].unleash_chance(@battler.weapon_id)) use_skill($data_skills[$data_weapons[@battler.weapon_id].unleash_id(@battler.weapon_id)]) @battler.unleash = true end end return super end alias ryex_WUS_Map_Actor_use_skill_latter use_skill def use_skill(skill) #if this skill in a waepon unleash if @battler.unleash @battler.unleash = false # remove last hpdamage and spdamage values @battler.hpdamage = @battler.spdamage = 0 # execute skill result = $BlizzABS.skillitem_process(self, skill) # if used and not charging up if result # call common event common_event_call(skill) # set usage animation set_usage_animation(skill) # set up user damage display if necessary user_damage_display # reset action self.reset_action # if using skill sprites for this type of battler if BlizzABS::Config::A_SKILL_SPRITES # setup sprite extension with ID setup_sprites("_skl#{skill.id}") else # setup sprite extension setup_sprites('_skl') end end # used or charging return (result || charging?) else ryex_WUS_Map_Actor_use_skill_latter(skill) end end
end edit : ternyata dah ada yg ngepost duluan...
Terakhir diubah oleh LiTTleDRAgo tanggal 2011-01-29, 12:25, total 1 kali diubah |
| | | 2011-01-29, 12:18 | Re: weapon instan skill plzzz |
---|
Call me "Doc" Newbie
Posts : 10 Thanked : 0 Engine : RMVX Skill : Beginner Type : Scripter
| - rezpect wrote:
- @DOC oce cba pas kompi ane dah di perbsiki
- Quote :
- demonya hapus tanda bintang dalam kata media*fire
dah dapus kk. . .tpi pas w msuk web ntu. . .cma nangkring d halaman depan doank. . kan biasanya langsung k file yg mw d DL???
ato demonya dah ke delete??? nih coba link ini http://www.media*fire.com/?jizdzo0wtgn |
| | | | Re: weapon instan skill plzzz |
---|
Sponsored content
| | | | | weapon instan skill plzzz | |
|
Similar topics | |
|
Similar topics | |
| |
Halaman 1 dari 1 | |
| Permissions in this forum: | Anda tidak dapat menjawab topik
| |
| |
Latest 10 Topics | [Web Novel] Gloria Infidelis 2016-11-17, 21:27 by LightNightKnight
[Announcement] Forum baru untuk RMID 2016-08-25, 16:39 by TheoAllen
Where I'm Wrong ? 2016-07-24, 16:10 by ReydVires
flakeheartnet's Resources part III 2016-07-08, 14:30 by flakeheartnet
Keira's Art Warehouse 2016-06-28, 19:27 by KeiraBlaze
Theo Core Time System + Bingung 2016-06-27, 16:24 by Lockin
Error Script, Maybe ? 2016-06-27, 16:20 by Lockin
Nusaimoe @ RMID Lounge 2016-06-21, 05:02 by Jihad Bagas
Call Random Battle 2016-06-15, 17:04 by Lockin
Flakeheartnet Resources Part II [come back gift] 2016-06-07, 15:51 by flakeheartnet
|
Statistics
|
Members: [ 4947 ]
Topics: [ 8258 ]
Posts: [ 112606 ]
Newest member: [ https://rmid.forumotion.net/u4968 ]
|
|
|
|
|
|