QUOTE (Zarby @ Apr 16 2012, 11:53 AM)

Hi, in the "Game Player" script search that :
CODE
def refresh
if $game_party.members.size == 0
@character_name = ""
@character_index = 0
else
actor = $game_party.members[0] # Get front actor
@character_name = actor.character_name
@character_index = actor.character_index
end
end
and just change it for that :
CODE
def refresh
if $game_party.members.size == 0
@character_name = ""
@character_index = 0
else
@character_name = "filename" # The filename of your character ex : Actor1 inside the " " (for default)
@character_index = 0 # The index of the character ex : 0 (for default)
end
end
Thank you very much, kind sir.
That helps a lot! However, I still need to be able to change the graphic mid-game...
Is there a way I can do that with events?
QUOTE (Zarby @ Apr 16 2012, 05:00 PM)

you can use a condition like this :
CODE
def refresh
if $game_party.members.size == 0
@character_name = ""
@character_index = 0
else
if $game_switches[IDOFTHESWITCHYOUWANT] == true
@character_name = "filename" # The filename of your character ex : Actor1 inside the " " (for default)
@character_index = 0 # The index of the character ex : 0 (for default)
end
end
end
juste replace the IDOFTHESWITCHYOUWANT by the id of the switch you want

lol, when the switch is on your character is always the character you setted, if it off you can change the appearance or the other group member can be leader too
Thanks, that's awesome! Thank you for the quick reply and everything.
This issue is now [Solved].
This post has been edited by TheDrifter: Apr 16 2012, 10:05 AM