Send

      send - syntax: send(CH,"message") 

Used to send a message directly to a character - mostly for debugging purposes. A single new line is appended automatically. To add more, end the message with nr for each additional newline.

   ---  a very basic identify mob
   say("Here are the stats of your " .. obj.name)
   send(ch,"Level    : " .. obj.level)
   send(ch,"Type     : " .. obj.typestr)
   send(ch,"Value    : " .. obj.value)
   send(ch,"Weight   : " .. obj.weight)