diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-10 15:31:48 +0530 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-18 05:13:35 +0100 |
commit | bfc63570ef3f5c37eab9c84d62a382bd54c66ff4 (patch) | |
tree | 4d930dae40d64231ed8f79204cc87ce878f96862 /npc/events/StPatrick_2008.txt | |
parent | 6133612d369697e2228545e70eff5d69e6e8c46e (diff) | |
download | hercules-bfc63570ef3f5c37eab9c84d62a382bd54c66ff4.tar.gz hercules-bfc63570ef3f5c37eab9c84d62a382bd54c66ff4.tar.bz2 hercules-bfc63570ef3f5c37eab9c84d62a382bd54c66ff4.tar.xz hercules-bfc63570ef3f5c37eab9c84d62a382bd54c66ff4.zip |
ItemID to Constant: events Folder
Diffstat (limited to 'npc/events/StPatrick_2008.txt')
-rw-r--r-- | npc/events/StPatrick_2008.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/events/StPatrick_2008.txt b/npc/events/StPatrick_2008.txt index a997e91ef..9039d0f66 100644 --- a/npc/events/StPatrick_2008.txt +++ b/npc/events/StPatrick_2008.txt @@ -186,7 +186,7 @@ prt_fild05,170,286,4 script Anxious Leprechaun#8pday 4_M_PATRICK,{ case 1: mes "[O'Riley the Leprechaun]"; mes "Thank you. Here's your ale~"; - if (countitem(7915) >= 10) { + if (countitem(Copper_Coin_) >= 10) { getitem 12135,1; delitem 7915,10; } @@ -194,7 +194,7 @@ prt_fild05,170,286,4 script Anxious Leprechaun#8pday 4_M_PATRICK,{ case 2: mes "[O'Riley the Leprechaun]"; mes "Thank you. Here's your ale~"; - if (countitem(7916) >= 5) { + if (countitem(Silver_Coin_) >= 5) { getitem 12135,1; delitem 7916,5; } @@ -202,7 +202,7 @@ prt_fild05,170,286,4 script Anxious Leprechaun#8pday 4_M_PATRICK,{ case 3: mes "[O'Riley the Leprechaun]"; mes "Thank you. Here's your ale~"; - if (countitem(7720) >= 1) { + if (countitem(Gold_Coin_US) >= 1) { getitem 12135,1; delitem 7720,1; } @@ -226,7 +226,7 @@ OnTouch: if (StPatrick2008 == 1) { mes "- You've found a pile of rocks covered with soil. -"; next; - if (countitem(12018) < 200) { + if (countitem(Fire_Cracker) < 200) { mes "The rocks won't budge."; mes "Maybe O'Riley knows a way to move the rocks."; close; |