diff options
Diffstat (limited to 'data/scripts/libs')
-rw-r--r-- | data/scripts/libs/libtmw.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/data/scripts/libs/libtmw.lua b/data/scripts/libs/libtmw.lua index d1e397e4..2c6670f0 100644 --- a/data/scripts/libs/libtmw.lua +++ b/data/scripts/libs/libtmw.lua @@ -410,3 +410,18 @@ end tmw.chr_money = function(ch) return tmw.chr_inv_count(ch, 0) end + + + +function cast(ch, arg) + if arg == 1 then + tmw.being_say(ch, "Kaaame...Haaame... HAAAAAA!") + end + if arg == 2 then + tmw.being_say(ch, "HAA-DOKEN!") + end + if arg == 3 then + tmw.being_say(ch, "Sonic BOOM") + end + +end |