diff options
Diffstat (limited to 'example/serverdata/scripts/npcs/healer.lua')
-rw-r--r-- | example/serverdata/scripts/npcs/healer.lua | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/example/serverdata/scripts/npcs/healer.lua b/example/serverdata/scripts/npcs/healer.lua deleted file mode 100644 index 88335c23..00000000 --- a/example/serverdata/scripts/npcs/healer.lua +++ /dev/null @@ -1,21 +0,0 @@ ----------------------------------------------------------- --- Healer Function Sample -- ----------------------------------------------------------------------------------- --- Copyright 2009-2010 The Mana World Development Team -- --- -- --- This file is part of The Mana World. -- --- -- --- The Mana World is free software; you can redistribute it and/or modify it -- --- under the terms of the GNU General Public License as published by the Free -- --- Software Foundation; either version 2 of the License, or any later version. -- ----------------------------------------------------------------------------------- - -function Healer(npc, ch) - do_message(npc, ch, "Do you need healing?") - local c = do_choice(npc, ch, "Heal me fully", "Heal 100 HP", "Don't heal me") - if c == 1 then - mana.being_heal(ch) - elseif c == 2 then - mana.being_heal(ch, 100) - end -end |