diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-12-15 17:18:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-12-15 17:18:36 -0300 |
commit | e774069902d8c673db6186b6b7a673004d215bdc (patch) | |
tree | c70612ab9d9b6cfef6a6adfa09ddc10ea273977f | |
parent | 6e17435015d3a6d94e4633c9d52b1844f13fd977 (diff) | |
download | serverdata-e774069902d8c673db6186b6b7a673004d215bdc.tar.gz serverdata-e774069902d8c673db6186b6b7a673004d215bdc.tar.bz2 serverdata-e774069902d8c673db6186b6b7a673004d215bdc.tar.xz serverdata-e774069902d8c673db6186b6b7a673004d215bdc.zip |
Audsbel had a wrong "item" id, which actually is a monster.
-rw-r--r-- | npc/003-0-1/audsbel.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/003-0-1/audsbel.txt b/npc/003-0-1/audsbel.txt index 82db5e436..05954af3c 100644 --- a/npc/003-0-1/audsbel.txt +++ b/npc/003-0-1/audsbel.txt @@ -380,7 +380,8 @@ L_Magic: // Help on research to gain his favor case 9: mesn; - mesq l("So... I think I'm almost done! My plan is to force a @@ into being a pretty Butterfly. Hey, I like cute things!", getitemlink(SilkWorm)); + // Obviously wrong, have you never read about butterflies? + mesq l("So... I think I'm almost done! My plan is to force a @@ into being a pretty Butterfly. Hey, I like cute things!", getitemlink(SilkCocoon)); next; mesn; mesq l("Besides, there are no Butterflies in Tulimshar, and they could help the farm in getting producing food."); @@ -415,6 +416,8 @@ L_Magic: specialeffect FX_MAGIC, SELF, getcharid(3); specialeffect FX_MGWARP, SELF, .name$; specialeffect FX_ATTACK, AREA, .@mob; + // TODO: Maybe we should use unitattack()? Not need but... + // We could also reconfigure this snake Mode to exclude ChangeTarget closeclientdialog; close; } |