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;
}
Question
Jarms Firstclaw
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;
Edited by Jarms Firstclaw2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.