diff options
author | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-19 04:46:50 +0000 |
---|---|---|
committer | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-19 04:46:50 +0000 |
commit | c116ea51790a6d42280cf599192614dc373cf91d (patch) | |
tree | 8eccdef78694bac85683e7a5730bd42d3a6a4228 /npc/other/marriage.txt | |
parent | 2b6f3618d99f725d224859d17344b640e0255d59 (diff) | |
download | hercules-c116ea51790a6d42280cf599192614dc373cf91d.tar.gz hercules-c116ea51790a6d42280cf599192614dc373cf91d.tar.bz2 hercules-c116ea51790a6d42280cf599192614dc373cf91d.tar.xz hercules-c116ea51790a6d42280cf599192614dc373cf91d.zip |
Updated scripts with select().. THERE ARE TONS OF THEM!! Will somebody give me a hand or something? :B
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9259 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other/marriage.txt')
-rw-r--r-- | npc/other/marriage.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/npc/other/marriage.txt b/npc/other/marriage.txt index 200968bb2..35571a1ae 100644 --- a/npc/other/marriage.txt +++ b/npc/other/marriage.txt @@ -215,6 +215,8 @@ function SF_AcceptGroom { mes "["+@name$+"]";
mes "After your groom approves, you will be given your rings, the ceremony will begin and you will be officially married.";
close;
+ default:
+ end;
}
}
@@ -248,6 +250,8 @@ function SF_AcceptBride { mes "["+@name$+"]";
mes "After your bride approves, you will be given your rings, the ceremony will begin and you will be officially married.";
close;
+ default:
+ end;
}
}
@@ -478,6 +482,8 @@ prt_church.gat,106,99,3 script Sister Mary 67,{ case 4: //Register
SF_Register();
break;
+ default:
+ end;
}
} while (@menu > 1);
end;
@@ -873,6 +879,8 @@ prt_church.gat,94,99,4 script Sister Lisa 79,{ initnpctimer;
mes "Very well, get your partner to confirm, and I will collect the fee for filing the divorce then.";
close;
+ default:
+ end;
}
} while (@menu > 1);
end;
@@ -894,7 +902,7 @@ function SF_InProgress { mes $@divorcer$+" has asked to divorce you. If you accept, and have the fee of "+$@wed_divorce_fee+"z at hand, I will proceed to divorce you two.";
mes "So, should I proceed with the divorce?";
next;
- if (select("I don't want to divorce....","Yes, we have agreed to this.")!=2) {
+ if (select("I don't want to divorce....", "Yes, we have agreed to this.") !=2) {
mes "["+@name$+"]";
mes "I hope you can work things out.";
emotion e_pat;
|