mirror of
https://github.com/etlegacy/etlegacy-lua-scripts.git
synced 2024-12-03 01:22:36 +00:00
10 lines
177 B
Lua
10 lines
177 B
Lua
|
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
|