Home
Help
Search
Calendar
Login
Register
Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News:
New forum theme up and running!
Charas-Project
»
Game Creation
»
Requests
»
RPG Maker Programming
»
Hi-Ougis of Tales Series
« previous
next »
Print
Pages: [
1
]
Author
Topic: Hi-Ougis of Tales Series (Read 2052 times)
SangeYasha
Holy Angel
Initiate
Posts: 4
Hi-Ougis of Tales Series
«
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 ^_^
Logged
WarxePB
Action Sue
Royal
Posts: 3,601
What killed the dinosaurs?
(No subject)
«
Reply #1 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.
Logged
Blog:
The Gigaverse
Twitter:
Initial Chaos
SangeYasha
Holy Angel
Initiate
Posts: 4
(No subject)
«
Reply #2 on:
July 31, 2005, 06:46:01 AM »
Thank you ^_^
Now I will test xD
Logged
Print
Pages: [
1
]
« previous
next »
Charas-Project
»
Game Creation
»
Requests
»
RPG Maker Programming
»
Hi-Ougis of Tales Series