Charas-Project

Game Creation => Requests => RPG Maker Programming => Topic started by: SangeYasha on July 31, 2005, 12:31:39 AM

Title: Hi-Ougis of Tales Series
Post by: SangeYasha on July 31, 2005, 12:31:39 AM
There is some way of do Hi-Ougis in RPG maker 2k or 2k3?

Hi-Ougis are form the 'Tales of' series and are like secret attacks that you can only realize in certain conditions.

Like if you have less than 15% of your HP and then use attack "X", but instead attack "X" the attack that will be used will be attack "Y".

I tried to do this in Battle Events, but for some estrange reason the events pages keep repeating. Example: You put Show Message "Hi", that message will keep repeating the whole battle.

So, if there is a way to do that, could someone explain it to me XD?

Thanks ^_^
Title:
Post by: WarxePB on July 31, 2005, 12:41:27 AM
Easily.

In the Database, create two skills; the normal skill (attack X) and a stronger version (attack Y) but with the same name as Attack X. Set the skills up like you would normally.

Now, go into the M.Groups tab. In the Battle Event box, set the Trigger to "Turns Elapsed [1X]".

Next, insert this code:

<>Variable Operation: Var[0001:HERO HP] Set, HERO A HP
<>Variable Operation: Var[0001:HERO HP] *, 100
<>Variable Operation: Var[0001:HERO HP] /, HERO A Max HP
<>Branch if Var[0001:HERO HP] is 15 or less
|<>Change Skills: HERO A Attack X Remove
|<>Change Skills: HERO A Attack Y Add
|<>
<>Else Handler
|<>Change Skills: HERO A Attack X Add
|<>Change Skills: HERO A Attack Y Remove
|<>
<>End
<>

If you need any clarification, just say the word.
Title:
Post by: SangeYasha on July 31, 2005, 06:46:01 AM
Thank you ^_^

Now I will test xD