Feelings:
=========
All clubs that uses feelings have to use them in
combination with the soul.

Clubline:
=========
All clubs may have a chatline, however there is a minimum cost 
of 15 sp/chat.

The following 4 files in the /open/line library should be used when
  making a line:
1. /open/line/line.c         All functions needed for handling the line.
2. /open/line/send_player.c  A statue of the player that automatically will
                             be placed in the send_room.
3. send_room.c               The room for keeping statues for the line.
                             (Just make a copy of /open/line/send_room.c)
4. send.h                    All constants needed for specifying your own line.
                             (Make a copy of /open/line/send.h and make
                             your own adjustments)


Here is an example of how to write in your guild-object:
(OBS Do NOT change the order of these includefiles.)

#include "/players/your-name/send.h"
#include "/open/line/line.c"

init(arg) {
  init_line();
}
  


