17 lines
No EOL
393 B
Lua
17 lines
No EOL
393 B
Lua
--[[
|
|
© 2017 Thriving Ventures Limited do not share, re-distribute or modify
|
|
|
|
without permission of its author (gustaf@thrivingventures.com).
|
|
]]
|
|
|
|
local plugin = plugin;
|
|
local command = {};
|
|
|
|
command.help = "Open the MOTD.";
|
|
command.command = "motd";
|
|
|
|
function command:Execute(player, silent, arguments)
|
|
serverguard.netstream.Start(player, "sgOpenMOTD", 1);
|
|
end;
|
|
|
|
plugin:AddCommand(command); |