Chaos Project

RPG Maker => RPG Maker Scripts => Script Requests => Topic started by: Shalaren on February 27, 2011, 03:56:12 am

Title: [XP][Blizz-Abs] Party leader controls all
Post by: Shalaren on February 27, 2011, 03:56:12 am
ok after figuring some things out, I changed the way the system should be, because the following features
is the only thing that has to be done with scripting S:
you can put other party member's skills on your hotkey, other way to say it, the hotkey is general for all party members!
using their skills will activate the skill and it will be caused by them, not the party leader, who is ur selected character *allways*. they just follow you but when u activate their skills, they perform the skill just as it is configured. everything is like they committed the skill even though u are playing witht he party leader, not them.

other way to look at it, all the party members do is provide the party leader with skills, that when used it will be as they used the skill, not the party leader. all they do is follow, and use skills when u activate the hotkey on the main character.


its been requested once already in the past by someone, but there is still no such script.
this is going to be super hard explaining!  :'(


[/color][/b]


Blizz kinda figured it out for me o-o other then whats blue, i sitll need the htings that are on blue as a script S:.

Need more explenation? just let [/color][/size]
Title: Re: [XP][Blizz-Abs] Party leader controls all
Post by: Blizzard on February 27, 2011, 04:32:55 am
1. Disable the party leader switch button. Refer to the manual for the proper script call.
2. Just set the aggressive attribute manually. Once you do that, it will force it all the time and it can't be changed by the player. Again, refer to the manual for the proper script call.
3. & 4. Yes, you will need a custom script for that. You could do it with forced action commands, but it would be very bothersome.
5. You could do that with just a little bit of tinkering with the alignment system. You would just have to keep setting the party leader's alignment to the normal actor alignment while you keep setting the party members to an alignment that enemies don't regard as "enemy".
Title: Re: [XP][Blizz-Abs] Party leader controls all
Post by: Shalaren on February 27, 2011, 05:15:18 am
ok I took care of 1 & 2, was actually pretty easy,
still need a script for 3&4&5
Title: Re: [XP][Blizz-Abs] Party leader controls all
Post by: Blizzard on February 27, 2011, 06:41:29 am
I just told you that you don't need a script for 5.
Title: Re: [XP][Blizz-Abs] Party leader controls all
Post by: Shalaren on February 27, 2011, 09:30:01 am
no you cant really. i want enemies to consider the leader as enemy, but the party members it be like they dont even exist S:.
I played around, all characters are in the same alignment group =\, if im wrong explain yourself better S:. because as far as I know it doesnt work like that. and I mess with the alignment alot to know.
Title: Re: [XP][Blizz-Abs] Party leader controls all
Post by: Blizzard on February 27, 2011, 09:41:58 am
One common event is all it takes:

Quote from: Blizzard on February 27, 2011, 04:32:55 am
You would just have to keep setting the party leader's alignment to the normal actor alignment while you keep setting the party members to an alignment that enemies don't regard as "enemy".

Title: Re: [XP][Blizz-Abs] Party leader controls all
Post by: Shalaren on February 27, 2011, 10:11:19 am
Quote from: Blizzard on February 27, 2011, 04:32:55 am
You would just have to keep setting the party leader's alignment to the normal actor alignment while you keep setting the party members to an alignment that enemies don't regard as "enemy".

HOW? i read the manual alot of times  :O.o:
can you tell me what am I suppose to put in the common event?
Title: Re: [XP][Blizz-Abs] Party leader controls all
Post by: Blizzard on February 27, 2011, 10:17:55 am
$BlizzABS.player.actors.each {|a|
 if a.valid?
   a.ai.setup_group(INSERT_NEUTRAL_GROUP_ID_HERE)
 end
}
$game_player.ai.setup_group(
 ACTOR_GROUP)
Title: Re: [XP][Blizz-Abs] Party leader controls all
Post by: Shalaren on February 27, 2011, 11:53:48 pm
ok well then the request changed to only 3 & 4
S: