diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-10 15:32:29 +0530 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-18 05:13:35 +0100 |
commit | ecb934ebba6ac3fbd35d8816c1802f0d134ef4ac (patch) | |
tree | cf40d3e0bbc9b312e988881b203e96eb515e8299 /npc/other/marriage.txt | |
parent | 3aa8abd848f1570d514148b311b25871378d2e2d (diff) | |
download | hercules-ecb934ebba6ac3fbd35d8816c1802f0d134ef4ac.tar.gz hercules-ecb934ebba6ac3fbd35d8816c1802f0d134ef4ac.tar.bz2 hercules-ecb934ebba6ac3fbd35d8816c1802f0d134ef4ac.tar.xz hercules-ecb934ebba6ac3fbd35d8816c1802f0d134ef4ac.zip |
ItemID to Constant: other Folder
Diffstat (limited to 'npc/other/marriage.txt')
-rw-r--r-- | npc/other/marriage.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/other/marriage.txt b/npc/other/marriage.txt index e576c6a6a..6fa8e63eb 100644 --- a/npc/other/marriage.txt +++ b/npc/other/marriage.txt @@ -264,7 +264,7 @@ prt_church,97,100,4 script Wedding Staff#w 1_F_LIBRARYGIRL,{ mes "come and talk to me again."; goto L_End; } - else if (countitem(2613) < 1) { + else if (countitem(Diamond_Ring) < 1) { mes "[Marry Happy]"; mes "Mm? Did you forget to"; mes "bring the Diamond Ring"; @@ -284,7 +284,7 @@ prt_church,97,100,4 script Wedding Staff#w 1_F_LIBRARYGIRL,{ mes "Did you misplace your money?"; goto L_End; } - else if (countitem(7170) < 1) { + else if (countitem(Tuxedo) < 1) { mes "[Marry Happy]"; mes "Where's your Tuxedo?"; mes "You absolutely have to"; @@ -306,7 +306,7 @@ prt_church,97,100,4 script Wedding Staff#w 1_F_LIBRARYGIRL,{ mes "to help you with the funds?"; goto L_End; } - else if (countitem(2338) < 1) { + else if (countitem(Wedding_Dress) < 1) { mes "[Marry Happy]"; mes "Oh dear, did you forget"; mes "your Wedding Dress?"; @@ -367,7 +367,7 @@ prt_church,97,100,4 script Wedding Staff#w 1_F_LIBRARYGIRL,{ mes "bride's turn to speak to"; mes "Bishop Vomars."; Zeny -= 1300000; - delitem 7170,1; //Tuxedo + delitem Tuxedo,1; } else { mes "Since you're the bride,"; @@ -377,9 +377,9 @@ prt_church,97,100,4 script Wedding Staff#w 1_F_LIBRARYGIRL,{ mes "finished, it'll be your turn"; mes "to speak to Bishop Vomars."; Zeny -= 1200000; - delitem 2338,1; //Wedding_Dress + delitem Wedding_Dress,1; } - delitem 2613,1; //Diamond_Ring + delitem Diamond_Ring,1; wedding_sign = 1; goto L_End; } @@ -697,11 +697,11 @@ prt_church,100,128,4 script Bishop#w 1_M_PASTOR,{ wedding; //Give ring to Bride, and change to wedding sprite. sc_start SC_WEDDING,3600000,1; - getitem 2635,1; //Bride_Ring + getitem Bride_Ring,1; //Give ring to Groom, and change to wedding sprite. attachrid(getcharid(3,$@wed_groom$)); sc_start SC_WEDDING,3600000,1; - getitem 2634,1; //Bridegroom_Ring + getitem Bridegroom_Ring,1; detachrid; //Switch Script progression back to Bride attachrid(getcharid(3,$@wed_bride$)); |