OC-MultICE/modules/applications/nshc.lua

33 lines
723 B
Lua
Raw Normal View History

function nshc_w(evPP,nid)
2017-05-24 03:10:12 +10:00
local sI = E().sI or 1
2017-04-20 19:03:06 +10:00
while true do
if ev[1] == "net_msg" then
2017-04-23 19:05:16 +10:00
local V,msg=false,tostring(ev[4])
2017-04-20 19:03:06 +10:00
if ev[3] == evPP and ev[2] == nid then
if msg:sub(1,3) == "dis" then
write(msg:sub(4))
2017-04-20 19:03:06 +10:00
end
end
2017-05-24 03:10:12 +10:00
elseif ev[1] == "key" and ev[2] == sI and ev[3] == 29 and ev[4] == 27 then
2017-05-24 00:48:26 +10:00
break
2017-05-24 03:10:12 +10:00
elseif ev[1] == "key" and ev[2] == sI then
2017-04-20 19:03:06 +10:00
ns(nid,evPP,"key"..tostring(ev[3]))
end
C.yield()
end
2017-05-24 00:48:26 +10:00
ns(nid,evPP,"exit")
2017-04-20 19:03:06 +10:00
end
function nshc(P,nid)
ns(nid,P,"initnsh")
while true do
if ev[1] == "net_msg" and ev[2] == nid and ev[3] == P then
2017-05-24 00:48:26 +10:00
break
elseif ev[1] == "key" and ev[2] == sI and ev[3] == 29 and ev[4] == 27 then
break
end
C.yield()
end
2017-05-24 00:48:26 +10:00
nshc_w(ev[4],nid)
end