No.4
Oh, and also, I'm new to creating tilesets and I want to make the majority of them on my own. Any advice for tileset creation for VX Ace as well?
I use GIMP for all of my sprites and recolors I've done so far, if that helps
No.13
2- You'll need to make a common event that activates with a switch. Make it Autorun. Let's call the switch "Effect Call" for this.
In it, you will add a conditional branch and make another switch, which we will call "Effect On". For now, let's leave it empty.
Outside of the Cond. Branch, you will first remove any other effect switches (I recommend making another common event that turns all of those switches off and call it here) as well as do the following: Change Actor Graphic (which will change your player character's appearance and faceset), turn an "Has effect equipped" switch on (it will tell the game if the character has any effect switches on. Useful for effect removal or simple pinching cheeks animation), as well as turning "Effect On" (which we have a conditional branch of), possibly show battle animation, then turn the "Effect Call" switch off.
Back at our conditonal branch, we go inside and add the commands for:
Turning off the Effect related switches, including "Effect On" and "Effect Call"
Changing the protag back to normal
Possibly show battle animation.
These will tell that if your effect is equipped while running this event, you'll unequip the effect.
Now, add an item on the database. Make it non-consumable, accessible always, and make it call a common event.
All in all, VX Ace isn't much different than RPG Maker 2K3, eventing style.
Picture related (the first), this is what your basic common event should look like for an effect.
Now, for an animation, this is slightly more complicated. Add two more common events. On this second one, you will make it a parallel proccess instead, making it turn on by your "Effect On" switch you set up before.
In this common event, you will add a mere conditional branch that will turn another switch on if a switch is pressed. Assuming you want Shift, the equivalent is A. For this switch you want to turn on this time, we will call it "Effect Act".
Now, onto the Third common event, we will make it Autorun, and make it work with the "Effect Act" switch. Here comes the most creative part. Assuming you want a simple animation to play, a Move Route/Set Move Route with a charset change and facing according to the animation than change back to the normal effect sprite is sufficient. After the move route, you turn the "Effect Act" Switch off.
Pics 2 and 3 related, which is what your common events should more or less look like.
No.16
>>12>>13>>14>>15This is all so helpful!! Thank you so much! I'm going to test all of this out soon.
I'm such a noob haha
No.17
>>16You're welcome. We all had to start somewhere.
No.18
>>17If I have any more questions I'll be sure to ask again, this was very helpful (I'm sure I'll have more questions very soon cause it's all so new to me)