- Joined
- Feb 14, 2013
- Messages
- 130
- Reaction score
- 14
- First Language
- english
- Primarily Uses
Okay so im using this script and only one of my actors in the game uses this script for her skills. I have just a few questions.
#1
Is there anyway to make her start with at least 2 shard slots open and 2 shards equipped?
and
#2
Since she is the only one utilizing this mechanic I placed this script under galvs magic shards
class Scene_Shards
def next_actor
end
def prev_actor
end
end
and for the common even that calls the scene In the script I placed $game_party.menu_actor = $game_actors[2]
SceneManager.call(Scene_Shards)
I wanted to make it so that you cant scroll between characters during the magic shard screen and that it is stuck on her and I was going to add a conditional branch so that this scene can only be called if actor 2 is in party.
SO to simplify my question 2 is there anyway I can make it so that when the scene call is executed it locks on actor 2 and I cant scroll to other characters since they will not be using the script?
And for my first question I was wondering if the actors have to level up before being able to equip shards or is there someway I can have them start with shard levels at least 2? Any help would be greatly appreciated.
#1
Is there anyway to make her start with at least 2 shard slots open and 2 shards equipped?
and
#2
Since she is the only one utilizing this mechanic I placed this script under galvs magic shards
class Scene_Shards
def next_actor
end
def prev_actor
end
end
and for the common even that calls the scene In the script I placed $game_party.menu_actor = $game_actors[2]
SceneManager.call(Scene_Shards)
I wanted to make it so that you cant scroll between characters during the magic shard screen and that it is stuck on her and I was going to add a conditional branch so that this scene can only be called if actor 2 is in party.
SO to simplify my question 2 is there anyway I can make it so that when the scene call is executed it locks on actor 2 and I cant scroll to other characters since they will not be using the script?
And for my first question I was wondering if the actors have to level up before being able to equip shards or is there someway I can have them start with shard levels at least 2? Any help would be greatly appreciated.

