diff options
Diffstat (limited to 'world/map/npc/015-1/alice.txt')
-rw-r--r-- | world/map/npc/015-1/alice.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/world/map/npc/015-1/alice.txt b/world/map/npc/015-1/alice.txt index 18fdb4ba..34f728a1 100644 --- a/world/map/npc/015-1/alice.txt +++ b/world/map/npc/015-1/alice.txt @@ -2,17 +2,21 @@ // herbs. 015-1.gat,52,53,0|script|Alice|106,{ + + set @cat, ((Katze & NIBBLE_0_MASK) >> NIBBLE_0_SHIFT); + set @Hiss, ((Katze & NIBBLE_1_MASK) >> NIBBLE_1_SHIFT); + mes "[Alice]"; mes "\"Greeting, fellow wanderer."; mes "Are you collecting herbs, too?\""; next; - if (LastHiss == 2 && Katze < 4) + if (@Hiss == 2 && @cat < 4) menu "Yes, sure.", L_findmany, "Herbs?", L_herbs, "Nope, just enjoying the scenery.", L_close, "I saw the cat, but it doesn't like me.", L_cat; - if (LastHiss == 1) + if (@Hiss == 1) menu "Yes, sure.", L_findmany, "Herbs?", L_herbs, |