diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-14 15:59:58 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-14 15:59:58 -0200 |
commit | b9d4185686e561ec80145f1370b499d0bf58afc2 (patch) | |
tree | 17ade44a037fca5b85169ee8fd7dd83ddc526052 /npc/001-1/mahul.txt | |
parent | 32ce252ddab84f3204b2ec74b6a3f0f9f3e13823 (diff) | |
download | serverdata-b9d4185686e561ec80145f1370b499d0bf58afc2.tar.gz serverdata-b9d4185686e561ec80145f1370b499d0bf58afc2.tar.bz2 serverdata-b9d4185686e561ec80145f1370b499d0bf58afc2.tar.xz serverdata-b9d4185686e561ec80145f1370b499d0bf58afc2.zip |
Mahul, Aeros Well Master. And, why not fishing on Aeros? I want fried fish!
(jk, I don't like eating fish)
Diffstat (limited to 'npc/001-1/mahul.txt')
-rw-r--r-- | npc/001-1/mahul.txt | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/npc/001-1/mahul.txt b/npc/001-1/mahul.txt new file mode 100644 index 000000000..5d0483350 --- /dev/null +++ b/npc/001-1/mahul.txt @@ -0,0 +1,58 @@ +// TMW-2 Script +// Author: +// Saulc +// Jesusalva +// Description: +// Mahul is the Aeros Well Master + +001-1,299,45,0 script Mahul NPC_PLAYER,{ + mesn; + mesq l("Uhul! My name is Mahul!"); + mes l("I can fill your bottle with water for only @@ gp the bottle.", .COST_PER_BOTTLE); + mes l("After all, I am the Well Master!"); + input .@count; + + if (.@count == 0) + close; + .@Cost = .@count * .COST_PER_BOTTLE; + .@empty = countitem(EmptyBottle); + + if (.@empty < .@count) + goto L_NotEnoughBottles; + if (Zeny < .@Cost) + goto L_NotEnoughMoney; + getinventorylist; + inventoryplace BottleOfDivineWater, .@count; + + Zeny=Zeny-.@Cost; + delitem EmptyBottle, .@count; + getitem BottleOfDivineWater, .@count; + close; + +L_NotEnoughBottles: + mes ""; + mesn; + mes l("You don't have that many empty bottles!"); + close; + +L_NotEnoughMoney: + mes ""; + mesn; + mes l("You don't have enough gold! You need @@ gp.", .@Cost); + close; + +OnInit: + .COST_PER_BOTTLE = 100; + .sex = G_MALE; + .distance = 7; + + .@npcId = getnpcid(.name$); + // Check items.xml for info about this + setunitdata(.@npcId, UDT_HEADTOP, InfantryHelmet); + setunitdata(.@npcId, UDT_HEADMIDDLE, SailorShirt); + setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers); + setunitdata(.@npcId, UDT_HAIRSTYLE, 7); + setunitdata(.@npcId, UDT_HAIRCOLOR, 17); + + end; +} |