ackfuss-4.4.1/
ackfuss-4.4.1/board/
ackfuss-4.4.1/help/k/
ackfuss-4.4.1/help/n/
ackfuss-4.4.1/help/s/
ackfuss-4.4.1/help/u/
ackfuss-4.4.1/help/v/
ackfuss-4.4.1/help/x/
ackfuss-4.4.1/help/y/
ackfuss-4.4.1/help/z/
ackfuss-4.4.1/src/areaconvert/
ackfuss-4.4.1/src/areaconvert/h/
package.path = "/home/matt/workspace/ackfuss/script/?.lua;" .. package.path
require "wait"

-- send to room - with newline
function rsend (...)
  mud.recho (table.concat {...} .. "\r\n")
end

-- send to room - without newline
function nrsend (...)
  mud.recho (table.concat {...})
end

-- formatted send to room - with newline
function frsend (s, ...)
  mud.recho (string.format (s, ...) .. "\r\n")
end

-- formatted send to room - without newline
function frsend (s, ...)
  mud.recho (string.format (s, ...))
end

--function room_enter ()
-- wait.make( function ()
--  wait.pause(3)
--  end
-- )
--end