Eriol Clowphengire
Member
Yes.
This is the death events feature.probpe":xl9ofdj7 said:Thankyou for your reply..
I have another question..
I need the method of battle event which appears when one enemy dies.
I copied the center of the map on the krones forest but that method was about turn.
and another question how do I change the message 'Deafeat Leo' like this ?
Thankyou..
#------------------------------------------------------------
# Check Death Action
#------------------------------------------------------------
# This section allows you to identify common events upon death for what map
# you are fighting on by the id of the actor/enemy
def self.check_death_action(map_id, type = 0)
case map_id
when 1
return {1=>6} if type == 0 #actors
return {} #enemy death
when 3
return {1=>7} if type == 0 #actors
return {36=>8}
else
return {} if type == 0 #actors
return {} #enemies
end
end
1> that should work just fine. Are you sure that your Map_ID is correct? Does the common event has something in it? (I know that is a dumb question, but someone had that problem before)probpe":1fdemthn said:You mean..
when 1 <b> <- Map ID</b>
return {actor ID -> Comevnt ID} if type == 0 #actors
return {enemy ID -> Comevnt ID} #enemy death
Right ?? But nothing happened..;
Is there any problem ??
<b><2></b> And another one.. I tried to move enemy and actor by event.. So i add the movement of the actor and enemy.. but it didn't worked.. showing the sentences were only able to do... can't I move the battlers by event?
<b><3></b> and can I set the netral battlers not to attack ? I just want to make a netral battler just like normal citizen.
Thank you I'll wait for your help..
actor = $game_actors[ID]
actor.run_route([2,4,6,8]) #where each instance of 2 is down, 4 is left,
#6 is right, and 8 is up and move s the character using that defined route.
I dont understand what you are saying. If you are trying to change the title of each COMMAND (Attack/Move/Status) and not just the skill you will have to make changes in more than just Window_Base.But the message was changed but I was not able to click them