Chaos Project

RPG Maker => Event Systems => Event System Requests => Topic started by: whitespirits on January 22, 2014, 07:08:31 pm

Title: [RMXP]Transform system needed
Post by: whitespirits on January 22, 2014, 07:08:31 pm
Hi guys, So im making a DBZ rmxos game and its going really well! Im not looking to make character power up an transform, I have done this using conditional attached to a skill to change sprite, problem is I want it to run out! i dont wan a character to transform gain power and keep it, i was thinking is there away to put a timer on and also drain SP at the same time? any help much apprichated!
Title: Re: [RMXP]Transform system needed
Post by: KK20 on January 24, 2014, 08:19:36 pm
Common Event running in Parallel Process. It's not that hard.

Set a variable (called Timer or something) to the value equivalent to 20 * SECONDS. Activate switch to run parallel process. Subtract Timer variable by one. Reduce player's SP by some amount. Have a conditional branch check to see if the timer or the player's SP is less than or equal to 0. If so, turn switch off.
Title: Re: [RMXP]Transform system needed
Post by: whitespirits on January 25, 2014, 07:53:48 pm
thanks for the help KK i really appreciate it :) i will look into it