Here's the problem.
I tried to create a new event on a map using call script. I found out it could be done but it's very hard. Instead I tried just to duplicate an existing event and change it's location. I created two events. The first had only a message command and said "BLAH" and the graphic was "001-Fighter01. The second had the graphic "010-Lancer02" and it looked like this:
This actually duplicates the commands but not the graphic. There was nothing there but when I tried to walk over the tile where the new event was supposed to be I couldn't walk over it and when I pressed enter it said "BLAH". I couldn't figure out why there's no graphic and I would appreciate if someone could tell me why's this happening.
I tried to create a new event on a map using call script. I found out it could be done but it's very hard. Instead I tried just to duplicate an existing event and change it's location. I created two events. The first had only a message command and said "BLAH" and the graphic was "001-Fighter01. The second had the graphic "010-Lancer02" and it looked like this:
Code:
@>Call Script:ev = $game_map.events
new_ev = Game_Event.new($game_map.map_id,ev[1].event)
ev[ev.size + 1] = new_ev
ev[ev.size].event.x = 0
This actually duplicates the commands but not the graphic. There was nothing there but when I tried to walk over the tile where the new event was supposed to be I couldn't walk over it and when I pressed enter it said "BLAH". I couldn't figure out why there's no graphic and I would appreciate if someone could tell me why's this happening.