KEnemySwitch XP - Printable Version +- Save-Point (https://www.save-point.org) +-- Forum: Material Development (https://www.save-point.org/forum-8.html) +--- Forum: Scripts Database (https://www.save-point.org/forum-39.html) +---- Forum: RPGMaker XP (RGSS) Engine (https://www.save-point.org/forum-116.html) +---- Thread: KEnemySwitch XP (/thread-9613.html) |
KEnemySwitch XP - kyonides - 09-25-2024 KEnemySwitch XP
by Kyonides
Introduction Have you as a game developer ever wanted to switch between different enemy troops during battle? I mean, you would force the party to face 2 or more troops in a single battle like or or even ! The catch here would be that the player might not really know when that switch is supposed to happen at all. Guess what? Now you can do that! The Steps Code: # First you need to go set the values of 2 game variables, namely CHANCE_VAR_ID Notes Version 1.0.0 The final release that includes the possibility of setting a minimum number of troops you have to defeat to win the battle. Version 0.11.0 This release allows you to define how many enemy troops should be defeated before battle ends, namely 1 or ALL of them! Version 0.9.0 Once you defeat any of the available troops, the battle is over. Give me some time to turn that into an optional feature. Compatible with the Default Battle System. Terms & Conditions Free for use in non commercial games. Due credit is mandatory! Mention this forum in your game credits. That's it! RE: KEnemySwitch XP - kyonides - 09-28-2024 Version 0.11.0 Has Been Released!
This release allows you to define how many enemy troops should be defeated before battle ends, namely 1 or ALL of them! DEVELOPMENT - Initial Value for Battles: Code: START_DEFEAT_TROOPS_MODE = :all IN GAME - Optional Script Call: Code: $game_system.defeat_troops = :all RE: KEnemySwitch XP - kyonides - 10-03-2024 Version 1.0.0 is Now Available!
This release allows you to define how many enemy troops should be defeated before battle ends. This time it can also be equal to a specific number. DEVELOPMENT - New Initial Value for Battles: Code: START_DEFEAT_TROOPS_MODE = 2 IN GAME - New Optional Script Call: Code: $game_system.defeat_troops = 3 The script will autoadjust that number if deemed necessary. |