diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-10 15:32:14 +0530 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-18 05:13:35 +0100 |
commit | 3aa8abd848f1570d514148b311b25871378d2e2d (patch) | |
tree | f144ddd14143b3a92909196f8fe4dd7060ba4ad3 /npc/merchants/icecream.txt | |
parent | a1d160ead032b63a0f696a34961df9e099154402 (diff) | |
download | hercules-3aa8abd848f1570d514148b311b25871378d2e2d.tar.gz hercules-3aa8abd848f1570d514148b311b25871378d2e2d.tar.bz2 hercules-3aa8abd848f1570d514148b311b25871378d2e2d.tar.xz hercules-3aa8abd848f1570d514148b311b25871378d2e2d.zip |
ItemID to Constant: kafras/merchants Folder
Diffstat (limited to 'npc/merchants/icecream.txt')
-rw-r--r-- | npc/merchants/icecream.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/merchants/icecream.txt b/npc/merchants/icecream.txt index a8df94753..ba05d4f94 100644 --- a/npc/merchants/icecream.txt +++ b/npc/merchants/icecream.txt @@ -82,7 +82,7 @@ mes "Price is ^3355FF100 Zeny^000000 per ice cream."; close; } - if(checkweight(536,.@input) == 0) { + if(checkweight(Ice_Cream,.@input) == 0) { mes "[Ice Cream Maker]"; mes "Dear customer,you look like you're carrying a lot."; mes "Ice Cream is fine,"; @@ -91,7 +91,7 @@ close; } Zeny -= 100*.@input; - getitem 536,.@input; // Ice_Cream + getitem Ice_Cream,.@input; // Ice_Cream close; } |