RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Help with a battle event...

0 Members and 1 Guest are viewing this topic.

**
Rep:
Level 88
I have been working on the same battle event for are really long time now, and I still can't get it to work. Hopefully, someone will be able to help. Here is what I want to happen: If the main character (actor 1) should be KO'd in battle, he will be automatically revied with 200HP. I want to set this up so that will work during any battle, but will only work one time per battle. Unfortunately, I haven't had ANY success. Please help...my demo expires in just a few days...

Oh, and if you can, please try to help me using the commands and NOT the sripting program.
Spoiler for My Game Recommendations:
1) Demon Gate --- A great game with a terrific character-relationship system, an engaging story, and plenty of secrets and options for players who wish to be good/evil.
http://www.raizap.com/demongate/

2) Midnight --- A survival-horror game created with RPG Maker XP. Combat plays out in the smoothest running real-time battle system I have seen yet.
http://rmrk.net/index.php/topic,23239.0.html

3) The Healer --- A charming game with beautiful mapping and a fun battle system. One of the few games to use a healer as a main character, and so far it's pulled off well.
http://rmrk.net/index.php/topic,23524.0.html

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
I will wack around at this for you.
Watch out for: HaloOfTheSun

*****
Ancient Mummy
Rep:
Level 90
Whacks together with nouman !

****
Irock touched your custom title
Rep:
Level 89
Watch as the awsome Lominisio posts a pic that the even more awsome Blizzard posted!!

This will make them revive with 1 HP at the end of each battle. You can edit it to suit your needs.


pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
not what he wants...he wants him back alive IN battle.
Watch out for: HaloOfTheSun

*****
Ancient Mummy
Rep:
Level 90
Use common event conditional branch..

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
that wont work..we need a state to take a person out of the state of knocked out.
Watch out for: HaloOfTheSun

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
here you go...

also the main person right now that I am assuming you is your main hero is called aluxes.

go into states in databse, and make a new one called REVIVE..


then, go to troops. Select which troops you want this to work with.
then set this up under the events:

i used + 50, you can make it +200 if you want, also to make it happen once, at the end add (erase event) and it should work out.
Watch out for: HaloOfTheSun

**
Rep:
Level 88
I want to thank everyone for looking into this. But, I was finally able to find a way to make it work. I'll explain how I did it in case anyone is interested. In order to create an automatic revive technique, you will have to build the skill under the Troops tab. The only downside to this is that you will have to copy and paste it into each troop if you want your character to be able to do this in any battle. Anyway, you start by looking at the battle event section of this tab, and set your first page with the following:

Condition: Turn 0
Span: Battle

Now, you create the first event, which will be to turn on a switch, which you can name whatever you wich. I named mine "revive". When you are done, it should similar to this:

@>Control Switches: [0001: revive]=ON

Basically, this prepares your Reviving skill for activation, but it will not initiate it on its own. Next, you are going to create a new event page by clicking on the NEW EVENT PAGE button. Set this new page to the following condition and span:

Condition: Turn 1X & Switch: [0001: revive] is ON
Span: Turn

In other words, this is saying that your skill will activate once per turn as long as the revive switch is ON. But wait a minute, you say, what about making the skill so that you could only use it once per battle? It can be done! It's quite simple, really. All you have to do is add a conditional branch that states which character must be KO'd for the event to activate. So, even though it "activates" every turn by default, nothing will happen unless the designated character has been knocked out. You can customize your event page to add sounds or animations if you like. For instance, this is what mine looks like:

@>Conditional Branch: [Aaron] is [Knocked Out] inflicted
  @>Text: Spontaneous Recovery---Activated!
  @>Change State: [Aaron], -[Knocked Out]
  @>Show Battle Animation: Actor No.1 [Raise 2]
  @>Change HP: [Aaron] +199
  @>Change Switches: [0001: revive]=OFF

Here's what's happening. The conditional branch tells the skill to activate. It will do so before you and the enemy start trading attacks, but after you choose your moves for your party members. The text command (or Message Command) displays the name of the skill. By default, it will appear at the top of the screen. This is there to tell the player what's going on. Use the Change State command to remove the state "Knocked Out" (or whatever your equivlent is) from your target character, or, if you choose, your whole party. Just be sure you are consistant with what you put in the Conditonal Branch command. By removing knockout, you will automatically be placed at 1HP. To raise this to the desired amount (in my case, 200) use the Change HP command. Finally, be sure to turn off the switch, thereby preventing its further use in this battle.

And so, that's how it's done. If anyone else figures out another way to do it, I'd love to hear about it. There are two downsides to this method: (1) You have to edit them throught the Troops tab, and not as actual skills, and (2) Your character will not be revived if he/she is the only party member, and/or the last one to be KO'd. These are minor setbacks, in my opinion, and I am willing to deal with them. Once again, thanks to everyone who helped out!
Spoiler for My Game Recommendations:
1) Demon Gate --- A great game with a terrific character-relationship system, an engaging story, and plenty of secrets and options for players who wish to be good/evil.
http://www.raizap.com/demongate/

2) Midnight --- A survival-horror game created with RPG Maker XP. Combat plays out in the smoothest running real-time battle system I have seen yet.
http://rmrk.net/index.php/topic,23239.0.html

3) The Healer --- A charming game with beautiful mapping and a fun battle system. One of the few games to use a healer as a main character, and so far it's pulled off well.
http://rmrk.net/index.php/topic,23524.0.html

**
Rep:
Level 88
Thanks, Nouman! That's a really good idea! I may end up using your method after all...
Spoiler for My Game Recommendations:
1) Demon Gate --- A great game with a terrific character-relationship system, an engaging story, and plenty of secrets and options for players who wish to be good/evil.
http://www.raizap.com/demongate/

2) Midnight --- A survival-horror game created with RPG Maker XP. Combat plays out in the smoothest running real-time battle system I have seen yet.
http://rmrk.net/index.php/topic,23239.0.html

3) The Healer --- A charming game with beautiful mapping and a fun battle system. One of the few games to use a healer as a main character, and so far it's pulled off well.
http://rmrk.net/index.php/topic,23524.0.html

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
lol, no problem  ;D , I had hoped you trusted me to find the answer, but nice job trying yourself. And yes my way is a really easy way to do it.
Watch out for: HaloOfTheSun

**
Rep:
Level 88
I tried out your method, and it works...sort of. The problem occurs when the revived character dies again. Their HP drops to zero and their battler vanishes from the screen. However, they are not exactly, "dead." They can still attack and everything. It's rather confusing. I can't figure out how to prevent it.
Spoiler for My Game Recommendations:
1) Demon Gate --- A great game with a terrific character-relationship system, an engaging story, and plenty of secrets and options for players who wish to be good/evil.
http://www.raizap.com/demongate/

2) Midnight --- A survival-horror game created with RPG Maker XP. Combat plays out in the smoothest running real-time battle system I have seen yet.
http://rmrk.net/index.php/topic,23239.0.html

3) The Healer --- A charming game with beautiful mapping and a fun battle system. One of the few games to use a healer as a main character, and so far it's pulled off well.
http://rmrk.net/index.php/topic,23524.0.html

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
ooo..I guess I haven't fully tested it  :D , I will see whats wrong and try to fix it. I think all thats need it to have it take the player off the revive state after +200 health..but I wont know since I have to try later (busy) but you can try that and tell results.
Watch out for: HaloOfTheSun