18 lines
360 B
Lua
18 lines
360 B
Lua
-----------------------------------
|
|
-- func: build
|
|
-- desc: Print the server's current build information
|
|
-----------------------------------
|
|
---@type TCommand
|
|
local commandObj = {}
|
|
|
|
commandObj.cmdprops =
|
|
{
|
|
permission = 0,
|
|
parameters = ''
|
|
}
|
|
|
|
commandObj.onTrigger = function(player, target)
|
|
player:printToPlayer(BuildString())
|
|
end
|
|
|
|
return commandObj
|