I successfully spawned the npc on the area but whenever I try to talk to it, nothing happens..
here's the script
hoh_v5,120,143,6 script Room 1 858,{
mes "[Woman]";
mes "Please enter your password";
next;
input .@var$;
if (.@var$ == "password") {
mes "[Woman]";
mes "Well done, you typed it correctly.";
next;
switch(select("Enter your room:Cancel")) {
case 1:
warp "hoh_v5",27,236;
break;
case 2:
}
break;
}
} else {
mes "[Woman]";
mes "Sorry, you got it wrong.";
close;
}
end;