Hi, I'm trying to make NPC that go to custom maps.. but its only for Couple ( Wedding Player) and its teleport both of em.. (can't go alone) is this right code?
prontera.gat,137,165,3 script Wedding Room 720,{
mes "[Wedding Room]";
mes "Hi, I will warp you to Wedding Room";
next;
menu "Yes",L_TELEPORT,"No thanks",L_Bye;
close;
OnInit:
waitingroom "[Wedding Room]",0;
end;
L_TELEPORT:
mes "Ok... Wait a minute";
if (getpartnerid()){
mes "You're married!";
warppartner("Crystilia",68,82);
} else {
mes "Awww, you're not married.";
}
close;
L_Bye:
mes "Ok... Good Bye";
close;
}
//Exit to Prontera
Crystilia,70,85,4 script Exits 720,{
warp "prontera.gat" ,155,176;
}
and how to make chatbox on top of the NPC head.. this one got it.. i just copy and edit
Question
onizame
Hi, I'm trying to make NPC that go to custom maps.. but its only for Couple ( Wedding Player) and its teleport both of em.. (can't go alone)
is this right code?
and how to make chatbox on top of the NPC head.. this one got it.. i just copy and edit
Edited by onizameLink to comment
Share on other sites
0 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.