Start of chat mod

pull/2/head
Brandon 2014-05-25 23:14:14 -05:00
parent d7cc6e65aa
commit dd9e2cacf5
1 changed files with 19 additions and 0 deletions

19
mods/chat/init.lua Normal file
View File

@ -0,0 +1,19 @@
chat = {}
--[[
minetest.register_on_chat_message(function(name,msg)
end)
]]
chat.local_chat = function(pos,text,radius)
if radius == nil then
radius = 25
end
local oir = minetest.get_objects_inside_radius(pos, radius)
for _,p in pairs(oir) do
if p:is_player() then
minetest.chat_send_player(p:get_player_name(),text)
end
end
end