diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-25 23:19:21 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-25 23:19:21 -0200 |
commit | b0d9247f48151d047ac4dccc37efa70a71383926 (patch) | |
tree | 2ff20e02a4493dce48ec0ebd706e83f26dbe51b4 | |
parent | 5b26d87089d0e806d7e92037c9d4c180158e5191 (diff) | |
download | serverdata-b0d9247f48151d047ac4dccc37efa70a71383926.tar.gz serverdata-b0d9247f48151d047ac4dccc37efa70a71383926.tar.bz2 serverdata-b0d9247f48151d047ac4dccc37efa70a71383926.tar.xz serverdata-b0d9247f48151d047ac4dccc37efa70a71383926.zip |
Update Maya's file syntax
-rw-r--r-- | npc/005-1/maya.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/005-1/maya.txt b/npc/005-1/maya.txt index f4e9f1e80..c31f48b8a 100644 --- a/npc/005-1/maya.txt +++ b/npc/005-1/maya.txt @@ -44,11 +44,11 @@ L_Next: L_QuestAccepted: mesn; - mesq l("I see you have brought @@/3 @@ and @@/3 @@ for me",countitem("Cotton Cloth"),getitemlink(CottonCloth),countitem("Maggot Slime"),getitemlink(MaggotSlime)); + mesq l("I see you have brought @@/3 @@ and @@/3 @@ for me",countitem(CottonCloth),getitemlink(CottonCloth),countitem(MaggotSlime),getitemlink(MaggotSlime)); mes ""; menu - rif(countitem("Cotton Cloth") >= 3 && countitem("Maggot Slime") >= 3, l("Here they are!")), L_QuestCompleted, - rif(countitem("Cotton Cloth") < 3 || countitem("Maggot Slime") < 3, l("Oh, then I don't have enough! I'll bring more later!")), L_GetHelp1, + rif(countitem(CottonCloth) >= 3 && countitem(MaggotSlime) >= 3, l("Here they are!")), L_QuestCompleted, + rif(countitem(CottonCloth) < 3 || countitem(MaggotSlime) < 3, l("Oh, then I don't have enough! I'll bring more later!")), L_GetHelp1, l("Can we get back to that later?"), -; close; |