Chaos Project

RPG Maker => Event Systems => Event System Requests => Topic started by: Tazero on February 11, 2010, 05:21:37 pm

Title: EOS refill item--
Post by: Tazero on February 11, 2010, 05:21:37 pm
I'm using EOS, the DBS and I'm trying to make an item that will fill 1 persons rage bar (gain is 250 so 1000 = 100) but I'm not sure how this would work (the common event btw) How would i use the call script plz and thanks


-Taz
Title: Re: EOS refill item--
Post by: WhiteRose on February 11, 2010, 08:08:40 pm
From the script instructions:

# Additional info:
#
#   If you want to change the value of the SR % ingame use the "Call script"
#   event command and use this syntax:
#
#     $game_actors[X].sr = Y
#
#   X - ID of the hero in the database
#   Y - new value of the SR
#
#   You can also use another syntax:
#
#     $game_party.actors[X].sr = Y
#
#   X - position of the hero in the party
#   Y - new value of the SR
#
#   Note that X starts from 0 and NOT 1. The ammount is shown as 100,0%, this
#   is 1000 SR. i.e. 59,1% would be 591 SR.

Just create a common event with a script call. I hope that helps!

EDIT:
Oops, I read EOS as CRLS. Sorry, my fault.

This one is from the EOS instructions:

# Additional info:
#
#   If you want to change the value of the OD % ingame use the "Call script"
#   event command and use this syntax:
#
#     $game_actors[X].overdrive = Y
#
#   X - ID of the hero in the database
#   Y - new value of the OD
#
#   You can also use another syntax:
#
#     $game_party.actors[X].overdrive = Y
#
#   X - position of the hero in the party
#   Y - new value of the OD
#
#   Note that X starts from 0 and NOT 1. The amount is shown as 100,0%, this
#   is 1000 OD. i.e. 59,1% would be 591 OD.
Title: Re: EOS refill item--
Post by: Tazero on February 12, 2010, 04:30:11 am
Yeah... I know this.... How do I change one specific actors rage by item use?
Title: Re: EOS refill item--
Post by: Blizzard on February 12, 2010, 05:19:49 am
You need a script if you want to use an item on an actor and that would refill his SR/Overdrive. If you have an item that always refills the SR/Overdrive of one specific actor, then you can do it with the event calling a common event.
Title: Re: EOS refill item--
Post by: Tazero on February 12, 2010, 06:06:19 pm
It's that the character using (Rager fruit) item, the EOS bar gets filled for that actor the the Rage stone is easy just fill position1,2,3,4 ;)
Title: Re: EOS refill item--
Post by: Ryex on February 12, 2010, 11:36:19 pm
the difficulty here is telling which actor used the item