Good day im here for newbies question again,.
I trying to make my move npc,. and i already did it
and starting moving already,. but now im trying to put some condition
on in,.
this is my example
ra_temin,167,45,6 script Introductioners 966,{
mes"Hello Please Follow the guard,.";
mes "He is leading the way,. ";
set walk,1; // this is my condition, so that the player need to talk to this npc first before the guard will move
close;
}
ra_temin,165,45,6 script Guard 966,{
if (walk ==1) {
OnInit:
npcspeed 200;
npcwalkto 177,29;
end;
}
}
BTW this script is on one .txt files only
PROBLEMS: The guard already move before i talk to the introductioners;
and also can i make the player character move by the script so that he will follow the npc?
thank you so much
-Novice Ace