OC-MultICE/modules/ping.lua

9 lines
133 B
Lua
Raw Normal View History

2017-04-19 02:40:25 +10:00
s("pingd",function()
while true do
local evt={l()}
if evt[1] == "net_msg" then
ns(evt[2],CO.address,"Ping!")
end
end
end)