Files
factorio-scenario-ExpCluster/modules/commands/me.lua
2019-03-05 20:34:17 +00:00

8 lines
345 B
Lua

local Commands = require 'expcore.commands'
Commands.new_command('me','Sends an action message in the chat')
:add_param('action',false) -- action that is done by the player, just text its meaningless
:enable_auto_concat()
:register(function(player,action,raw)
game.print(string.format('* %s %s *',player.name,action),player.chat_color)
end)