diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-10 15:31:31 +0530 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-18 05:13:34 +0100 |
commit | 50e59ea8f8cfae5155e8733d4f06d67d91414bb1 (patch) | |
tree | 7efb5f6af006cbf4da7c2ba7f82f151c126cdc90 /npc/cities/umbala.txt | |
parent | 99e13a34742b3c745f8b2247bc0e0a39042b78d1 (diff) | |
download | hercules-50e59ea8f8cfae5155e8733d4f06d67d91414bb1.tar.gz hercules-50e59ea8f8cfae5155e8733d4f06d67d91414bb1.tar.bz2 hercules-50e59ea8f8cfae5155e8733d4f06d67d91414bb1.tar.xz hercules-50e59ea8f8cfae5155e8733d4f06d67d91414bb1.zip |
ItemID to Constant: cities Folder
Diffstat (limited to 'npc/cities/umbala.txt')
-rw-r--r-- | npc/cities/umbala.txt | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/npc/cities/umbala.txt b/npc/cities/umbala.txt index e6f2cb56f..8f0c39658 100644 --- a/npc/cities/umbala.txt +++ b/npc/cities/umbala.txt @@ -293,8 +293,8 @@ umbala,70,106,3 script Utan Kid#um 4_F_UMGIRL,{ mes "Thank you so much, yay~!"; if (Zeny > 1000) { Zeny -= 1000; - if (checkweight(517,1)) { - getitem 517,1; //Meat + if (checkweight(Meat,1)) { + getitem Meat,1; } emotion e_swt2; } @@ -354,8 +354,8 @@ umbala,70,106,3 script Utan Kid#um 4_F_UMGIRL,{ mes "Um~baumbah~ um~baumbah~"; if (Zeny > 1000) { Zeny -= 1000; - if (checkweight(517,1)) { - getitem 517,1; //Meat + if (checkweight(Meat,1)) { + getitem Meat,1; } emotion e_swt2; } @@ -390,15 +390,15 @@ umbala,59,243,5 script Utan Kid#1 4_M_UMKID,{ emotion e_rock; next; if (select("Give him Meat.:Refuse.") == 1) { - if (countitem(517) > 0) { + if (countitem(Meat) > 0) { mes "[Kotan]"; mes "Whoa, are you really giving me"; mes "Meat? Thanks! I will pay you"; mes "back with these."; - delitem 517,1; //Meat - getitem 909,2; //Jellopy - getitem 914,2; //Fluff - getitem 705,2; //Clover + delitem Meat,1; + getitem Jellopy,2; + getitem Fluff,2; + getitem Clover,2; emotion e_scissors; close; } @@ -428,14 +428,14 @@ umbala,59,243,5 script Utan Kid#1 4_M_UMKID,{ emotion e_rock; next; if (select("Umbah:Umbaboo") == 1) { - if (countitem(517) > 0) { + if (countitem(Meat) > 0) { mes "[???]"; mes "Umbaumbaumbabababah."; mes "Umbababahum."; - delitem 517,1; //Meat - getitem 909,2; //Jellopy - getitem 914,2; //Fluff - getitem 705,2; //Clover + delitem Meat,1; + getitem Jellopy,2; + getitem Fluff,2; + getitem Clover,2; emotion e_scissors; close; } |