summaryrefslogtreecommitdiff
path: root/example/scripts/npcs
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-02-26 23:28:43 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-03-02 18:12:17 +0100
commita36e231883d595bcba91d44e19f24b31eaf0431b (patch)
tree879aad2008eb3675153bb9912c4cc724253f87c6 /example/scripts/npcs
parent34ac0d64e23f2b2d3981dbb0ea72157f334805dd (diff)
downloadmanaserv-a36e231883d595bcba91d44e19f24b31eaf0431b.tar.gz
manaserv-a36e231883d595bcba91d44e19f24b31eaf0431b.tar.bz2
manaserv-a36e231883d595bcba91d44e19f24b31eaf0431b.tar.xz
manaserv-a36e231883d595bcba91d44e19f24b31eaf0431b.zip
A bunch of cleanups to example Lua scripts
Mostly removed bulky copyright headers and fixed indentation and line length. Reviewed-by: Yohann Ferreira Reviewed-by: Erik Schilling
Diffstat (limited to 'example/scripts/npcs')
-rw-r--r--example/scripts/npcs/healer.lua30
-rw-r--r--example/scripts/npcs/shaker.lua4
2 files changed, 12 insertions, 22 deletions
diff --git a/example/scripts/npcs/healer.lua b/example/scripts/npcs/healer.lua
index 88335c23..a4a0db56 100644
--- a/example/scripts/npcs/healer.lua
+++ b/example/scripts/npcs/healer.lua
@@ -1,21 +1,15 @@
-----------------------------------------------------------
--- 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. --
-----------------------------------------------------------------------------------
+--[[
+
+ Healer NPC example
+
+--]]
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
+ 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
diff --git a/example/scripts/npcs/shaker.lua b/example/scripts/npcs/shaker.lua
index 9d7bafb7..ac6b152a 100644
--- a/example/scripts/npcs/shaker.lua
+++ b/example/scripts/npcs/shaker.lua
@@ -18,7 +18,6 @@ function shaker_update(npc)
center_x = mana.posX(npc)
center_y = mana.posY(npc)
tremor(center_x, center_y, 300)
-
end
end
@@ -43,6 +42,3 @@ function tremor (center_x, center_y, intensity)
end
end
end
-
-
-