Okay, I need help understand how to move the characters I want, as I've tried searching and looking and there's no clear definition on how the various commands should work.
However, what I"m currently having trouble getting to work is below.
//Inn keeper moving.
$gameMap.events()[0].forceMoveRoute({list:[{
code: 1, indent: null, parameters:[]},
{code: 1, indent: null, parameters:[]},
{code: 17, indent: null, parameters:[]},
{code: 0, indent: null, parameters:[]}],
repeat:false, skippable:false, wait:true});
//door moving.
$gameMap.events()[1].forceMoveRoute({list:[{
code: 44, indent: null, parameters:['Door1']},
{code: 42, indent: null, parameters:[0]},
{code: 0, indent: null, parameters:[]} ],
repeat:false, skippable:false, wait:true });
//Inn keeper moving again.
$gameMap.events()[0].foreMoveRoute({list:[{
code: 37, indent: null, parameters:[]},
{code: 4, indent: null, parameters:[]},
{code: 4, indent: null, parameters:[]},
{code: 38, indent: null, parameters:[]},
{code: 0, indent: null, parameters:[]}],
repeat:false, skippable:false, wait:true });
Basically I'm trying to have the 'Inn Keeper' move down twice, then turn left. Then have the door play the door1 se and turn it's opacity to 0. Then have Through turned on for the inn keeper event and have him walk to the left two times currently.
I have my reasons for needing to do it by scripting. So please... any help in understanding how to do this will be appreciated. I have searched for days and hours on how to do this right, using google to find my answers and all I have found was just the beginning steps that does not give much clarification.