diff options
author | Livio Recchia <recchialivio@libero.it> | 2020-11-17 21:03:40 +0100 |
---|---|---|
committer | Livio Recchia <recchialivio@libero.it> | 2020-11-17 21:03:40 +0100 |
commit | b0f614943122170b46eaaaac04b2dc670e05d279 (patch) | |
tree | 01b5e68a8eff80bedb5588af026879f9033eeb94 | |
parent | 1f58f29fff5bb045ce3471b0749ed221eadae9ed (diff) | |
download | serverdata-b0f614943122170b46eaaaac04b2dc670e05d279.tar.gz serverdata-b0f614943122170b46eaaaac04b2dc670e05d279.tar.bz2 serverdata-b0f614943122170b46eaaaac04b2dc670e05d279.tar.xz serverdata-b0f614943122170b46eaaaac04b2dc670e05d279.zip |
Minor modifications
-rw-r--r-- | npc/008-1-1/galimatia.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/npc/008-1-1/galimatia.txt b/npc/008-1-1/galimatia.txt index a341e5c7..fcdcee91 100644 --- a/npc/008-1-1/galimatia.txt +++ b/npc/008-1-1/galimatia.txt @@ -19,9 +19,10 @@ function script usePurificationPotion { } else { // FIXME Add more place checks // Attempting pouring potion nearby Galimatia - //if (isin("008-1-1", 112, 57, 114, 60)) speech l("I said on the field, not on me fool!!!"); - if (isin("008-1-1", 93, 52, 97, 56)){ message strcharinfo(0), l("The palm tree is fine, I guess... Nope. This is the wrong place."); return true; } - if (isin("008-1-1", 97, 68, 103, 70)){ message strcharinfo(0), l("There are little plants already growing here. No, I should not pour it here."); return true; } + //if (isin("008-1-1", 112, 57, 114, 60)) { npctalkonce(l("I said on the field, not on me fool!!!")); return true; } // FIXME Fails since doesn't recognize NPC + if (isin("008-1-1", 93, 52, 97, 56)){ message strcharinfo(0), l("The palm tree is fine, I guess... Nope. This is the wrong place."); return true; } + if (isin("008-1-1", 103, 58, 106, 58)){ message strcharinfo(0), l("Eh, better not. That's a nasty joke..."); return true; } + if (isin("008-1-1", 97, 68, 103, 70)){ message strcharinfo(0), l("There are little plants already growing here. No, I should not pour it here."); return true; } message strcharinfo(0), l("Hmm... I'm sure that is not the right place to put it."); return true; } |