forked from minetest-mods/irc
		
	Compare commits
	
		
			9 Commits
		
	
	
		
			nalc-1.0
			...
			612a94bbf1
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 612a94bbf1 | |||
|  | 5e3659761b | ||
|  | ac0387786c | ||
|  | 05ab5e9fbd | ||
| 2a88c47de4 | |||
| 351a86cbf2 | |||
| 47f889c178 | |||
|  | 1c23f8987b | ||
|  | 66bb7fc47d | 
| @@ -139,7 +139,7 @@ irc.register_bot_command("whereis", { | |||||||
| 			return false, "There is no player named '"..args.."'" | 			return false, "There is no player named '"..args.."'" | ||||||
| 		end | 		end | ||||||
| 		local fmt = "Player %s is at (%.2f,%.2f,%.2f)" | 		local fmt = "Player %s is at (%.2f,%.2f,%.2f)" | ||||||
| 		local pos = player:getpos() | 		local pos = player:get_pos() | ||||||
| 		return true, fmt:format(args, pos.x, pos.y, pos.z) | 		return true, fmt:format(args, pos.x, pos.y, pos.z) | ||||||
| 	end | 	end | ||||||
| }) | }) | ||||||
|   | |||||||
							
								
								
									
										10
									
								
								config.lua
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								config.lua
									
									
									
									
									
								
							| @@ -7,7 +7,6 @@ irc.config = {} | |||||||
| local function setting(stype, name, default, required) | local function setting(stype, name, default, required) | ||||||
| 	local value | 	local value | ||||||
| 	if minetest.settings and minetest.settings.get and minetest.settings.get_bool then | 	if minetest.settings and minetest.settings.get and minetest.settings.get_bool then | ||||||
| 		-- The current methods for getting settings |  | ||||||
| 		if stype == "bool" then | 		if stype == "bool" then | ||||||
| 			value = minetest.settings:get_bool("irc."..name) | 			value = minetest.settings:get_bool("irc."..name) | ||||||
| 		elseif stype == "string" then | 		elseif stype == "string" then | ||||||
| @@ -15,15 +14,6 @@ local function setting(stype, name, default, required) | |||||||
| 		elseif stype == "number" then | 		elseif stype == "number" then | ||||||
| 			value = tonumber(minetest.settings:get("irc."..name)) | 			value = tonumber(minetest.settings:get("irc."..name)) | ||||||
| 		end | 		end | ||||||
| 	else |  | ||||||
| 		-- The old methods for getting settings for backward compatibility. Deprecated on 0.4.16+ |  | ||||||
| 		if stype == "bool" then |  | ||||||
| 			value = minetest.setting_getbool("irc."..name) |  | ||||||
| 		elseif stype == "string" then |  | ||||||
| 			value = minetest.setting_get("irc."..name) |  | ||||||
| 		elseif stype == "number" then |  | ||||||
| 			value = tonumber(minetest.setting_get("irc."..name)) |  | ||||||
| 		end |  | ||||||
| 	end | 	end | ||||||
| 	if value == nil then | 	if value == nil then | ||||||
| 		if required then | 		if required then | ||||||
|   | |||||||
| @@ -1,4 +0,0 @@ | |||||||
| This mod is just a glue between IRC and Minetest. |  | ||||||
|  |  | ||||||
| It provides two-way communication between the |  | ||||||
| in-game chat, and an arbitrary IRC channel. |  | ||||||
| @@ -120,6 +120,8 @@ function irc.hooks.channelChat(msg) | |||||||
| 		text:find("^%*%*%* ([^%s]+) joined the game$") | 		text:find("^%*%*%* ([^%s]+) joined the game$") | ||||||
| 	local foundleave, _, leavenick = | 	local foundleave, _, leavenick = | ||||||
| 		text:find("^%*%*%* ([^%s]+) left the game$") | 		text:find("^%*%*%* ([^%s]+) left the game$") | ||||||
|  | 	local foundtimedout, _, timedoutnick = | ||||||
|  | 		text:find("^%*%*%* ([^%s]+) left the game %(Timed out%)$") | ||||||
| 	local foundaction, _, actionnick, actionmessage = | 	local foundaction, _, actionnick, actionmessage = | ||||||
| 		text:find("^%* ([^%s]+) (.*)$") | 		text:find("^%* ([^%s]+) (.*)$") | ||||||
|  |  | ||||||
| @@ -134,6 +136,9 @@ function irc.hooks.channelChat(msg) | |||||||
| 	elseif foundleave then | 	elseif foundleave then | ||||||
| 		irc.sendLocal(("*** %s left %s") | 		irc.sendLocal(("*** %s left %s") | ||||||
| 				:format(leavenick, msg.user.nick)) | 				:format(leavenick, msg.user.nick)) | ||||||
|  | 	elseif foundtimedout then | ||||||
|  | 		irc.sendLocal(("*** %s left %s (Timed out)") | ||||||
|  | 				:format(timedoutnick, msg.user.nick)) | ||||||
| 	elseif foundaction then | 	elseif foundaction then | ||||||
| 		irc.sendLocal(("* %s@%s %s") | 		irc.sendLocal(("* %s@%s %s") | ||||||
| 				:format(actionnick, msg.user.nick, actionmessage)) | 				:format(actionnick, msg.user.nick, actionmessage)) | ||||||
|   | |||||||
							
								
								
									
										12
									
								
								init.lua
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								init.lua
									
									
									
									
									
								
							| @@ -23,11 +23,18 @@ ie.package.path = | |||||||
| -- /usr/local/share and /usr/local/lib but LuaSocket is often installed under | -- /usr/local/share and /usr/local/lib but LuaSocket is often installed under | ||||||
| -- /usr/share and /usr/lib. | -- /usr/share and /usr/lib. | ||||||
| if not rawget(_G, "jit") and package.config:sub(1, 1) == "/" then | if not rawget(_G, "jit") and package.config:sub(1, 1) == "/" then | ||||||
|  |  | ||||||
| 	ie.package.path = ie.package.path.. | 	ie.package.path = ie.package.path.. | ||||||
| 			";/usr/share/lua/5.1/?.lua".. | 			";/usr/share/lua/5.1/?.lua".. | ||||||
| 			";/usr/share/lua/5.1/?/init.lua" | 			";/usr/share/lua/5.1/?/init.lua" | ||||||
|  |  | ||||||
| 	ie.package.cpath = ie.package.cpath.. | 	ie.package.cpath = ie.package.cpath.. | ||||||
| 			";/usr/lib/lua/5.1/?.so" | 			";/usr/lib/lua/5.1/?.so".. | ||||||
|  | 			";/usr/lib64/lua/5.1/?.so" | ||||||
|  |  | ||||||
|  | 	ie.package.cpath = "/usr/lib/x86_64-linux-gnu/lua/5.1/?.so;"..ie.package.cpath | ||||||
|  |  | ||||||
|  |  | ||||||
| end | end | ||||||
|  |  | ||||||
| -- Temporarily set require so that LuaIRC can access it | -- Temporarily set require so that LuaIRC can access it | ||||||
| @@ -104,7 +111,8 @@ end | |||||||
|  |  | ||||||
| minetest.register_privilege("irc_admin", { | minetest.register_privilege("irc_admin", { | ||||||
| 	description = "Allow IRC administrative tasks to be performed.", | 	description = "Allow IRC administrative tasks to be performed.", | ||||||
| 	give_to_singleplayer = true | 	give_to_singleplayer = true, | ||||||
|  | 	give_to_admin = true, | ||||||
| }) | }) | ||||||
|  |  | ||||||
| local stepnum = 0 | local stepnum = 0 | ||||||
|   | |||||||
							
								
								
									
										4
									
								
								mod.conf
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								mod.conf
									
									
									
									
									
								
							| @@ -1 +1,5 @@ | |||||||
| name = irc | name = irc | ||||||
|  | description = """ | ||||||
|  | This mod is just a glue between IRC and Minetest. | ||||||
|  | It provides two-way communication between the in-game chat, and an arbitrary IRC channel. | ||||||
|  | """ | ||||||
|   | |||||||
| @@ -13,6 +13,8 @@ end | |||||||
| function irc.player_join(name) | function irc.player_join(name) | ||||||
| 	if irc.joined_players[name] then | 	if irc.joined_players[name] then | ||||||
| 		return false, "You are already in the channel" | 		return false, "You are already in the channel" | ||||||
|  | 	elseif not minetest.get_player_by_name(name) then | ||||||
|  | 		return false, "You need to be in-game to join the channel" | ||||||
| 	end | 	end | ||||||
| 	irc.joined_players[name] = true | 	irc.joined_players[name] = true | ||||||
| 	return true, "You joined the channel" | 	return true, "You joined the channel" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user