--Readme 1.0 --by Mutor -- Command ="+readme" TextFile ="Readme.txt" Send2All ="yes" --Show all users? "yes"/"no" -- function DataArrival(user, data) s,e,cmd = strfind(data,"^%b<>%s(%S+)|") if cmd == Command then if user.bOperator then ReadText(user) return 1 end end end function ReadText(user) readfrom(TextFile) while 1 do local line = read() if line == nil then break end if Send2All =="yes" then SendToAll(line) else user:SendData(line) end end readfrom() end