etlegacy-lua-scripts/ladm/core/commands.lua

10 lines
177 B
Lua
Raw Normal View History

2014-02-11 14:09:54 +00:00
Command = {}
Command["hello"] = function()
et.G_Print ( "Hello, my friend.\n" )
end
Command["bye"] = function()
et.G_Print ( "Good bye, hope to see you again soon.\n" )
end