--[[ etc_motd.lua v0.03 by blastbeat - this script sends a message stored in a file to connecting users - changelog 0.03: - clean up - changelog 0.02: - updated script api ]]-- --// settings begin //-- local motd = [[This is the message of the day.]] --// settings end //-- local hub_getbot = hub.getbot hub.setlistener( "onLogin", { }, function( user ) user:reply( motd, hub_getbot( ) ) return nil end ) hub.debug( "** Loaded etc_motd.lua **" )