From 26d8eba0ad906cd9b4a95bbd94fc1556719fd5d2 Mon Sep 17 00:00:00 2001 From: Philipp Sehmisch Date: Fri, 9 Jul 2010 15:21:50 +0200 Subject: Added LUA script bindings for manipulating the specials available to a character. Added script call for getting the cost of a special (recharge only for now) Deleting specials works server-sided but the client isn't informed about it properly. Specials without recharge cost don't appear for the player. Both of these features require an additional netcode message. Reviewed-by: Freeyorp --- example/serverdata/scripts/special_actions.lua | 39 ++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 example/serverdata/scripts/special_actions.lua (limited to 'example/serverdata') diff --git a/example/serverdata/scripts/special_actions.lua b/example/serverdata/scripts/special_actions.lua new file mode 100644 index 0000000..135ad35 --- /dev/null +++ b/example/serverdata/scripts/special_actions.lua @@ -0,0 +1,39 @@ +------------------------------------------------------------- +-- Special action script file -- +-- -- +-- This file allows you to implement your special -- +-- action system. The system can for example implement -- +-- magic, physical attack or also such mundane things -- +-- as showing emoticons over the characters heads. -- +---------------------------------------------------------------------------------- +-- Copyright 2010 Manasource Development Team -- +-- -- +-- This file is part of Manasource. -- +-- -- +-- Manasource 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. -- +---------------------------------------------------------------------------------- + +local specialCost = {} +specialCost[1] = 50 +specialCost[2] = 250 +specialCost[3] = 1000 + +function use_special(ch, id) + -- perform whatever the special with the ID does + if id == 1 then + mana.being_say(ch, "Kaaame...Haaame... HAAAAAA!") + end + if id == 2 then + mana.being_say(ch, "HAA-DOKEN!") + end + if id == 3 then + mana.being_say(ch, "Sonic BOOM") + end +end + +function get_special_recharge_cost(id) + -- return the recharge cost for the special with the ID + return specialCost[id] +end -- cgit