plugins/topic.lua

Tue, 22 Sep 2020 14:59:25 +0200

author
Seve Ferrer <seve@delape.net>
date
Tue, 22 Sep 2020 14:59:25 +0200
changeset 159
7ca948b157df
parent 79
43ae29f2c69b
permissions
-rw-r--r--

plugins/commands.lua: The default command_prefix value is set on config.docker.lua.

function riddim.plugins.topic(bot)
	bot:hook("commands/topic", function(cmd)
		local room = cmd.room;
		if not room then return "This isn't a room!"; end
		if not cmd.param then return room.subject or "No topic here"; end
		room:set_subject(cmd.param);
	end);

	bot:hook("commands/addtopic", function(cmd)
		local room = cmd.room;
		if not room then return "This isn't a room!"; end
		if not cmd.param then return "What do you want me do add?"; end
		room:set_subject((#room.subject>0 and room.subject .. cmd.param) or cmd.param)
	end);
end

mercurial