diff --git a/libsecondlife-cs/MainAvatar.cs b/libsecondlife-cs/MainAvatar.cs
index 26b4150f..4064d2ea 100644
--- a/libsecondlife-cs/MainAvatar.cs
+++ b/libsecondlife-cs/MainAvatar.cs
@@ -65,121 +65,84 @@ namespace libsecondlife
MessageBox = 1,
/// You've been invited to join a group.
GroupInvitation = 3,
-
/// Indicates that someone has given the user an object
- /// Soon to be depreceated
+ /// Soon to be deprecated
GiveInventory = 4,
- /// Agent inventory offer.
+ /// Inventory offer
InventoryOffered = 4,
+ /// An avatar has accepted your inventory offer
InventoryAccepted = 5,
+ /// An avatar has declined your inventory offer
InventoryDeclined = 6,
-
/// Group vote
GroupVote = 7,
- //TODO - figure out the TaskInventory* bit
- /// Indicates that someone has given the user a notecard
+ /// Indicates that someone has given us a notecard
GiveNotecard = 9,
- /// Task inventory offer.
+ /// Unknown
TaskInventoryOffered = 9,
+ /// Unknown
TaskInventoryAccepted = 10,
+ /// Unknown
TaskInventoryDeclined = 11,
-
- /// Copied as pending, type LLNOTHINGSPECIAL, for new users
- /// used by offline tools
+ /// Unknown
NewUserDefault = 12,
-
- //
- // session based messaging - the way that people usually actually
- // communicate with each other.
- //
-
- /// Start a session, or add users to a session.
+ /// Start a session, or add users to a session
SessionAdd = 13,
-
/// Start a session, but don't prune offline users
SessionOfflineAdd = 14,
-
- /// start a session with your gruop
+ /// Start a session with your group
SessionGroupStart = 15,
-
- /// start a session without a calling card (finder or objects)
+ /// Start a session without a calling card (finder or objects)
SessionCardlessStart = 16,
-
- /// send a message to a session.
+ /// Send a message to a session
SessionSend = 17,
-
- /// leave a session
+ /// Leave a session
SessionDrop = 18,
-
/// Indicates that the IM is from an object
MessageFromObject = 19,
-
/// sent an IM to a busy user, this is the auto response
BusyAutoResponse = 20,
-
/// Shows the message in the console and chat history
ConsoleAndChatHistory = 21,
-
- /// IM Types used for luring your friends.
+ /// IM Types used for luring your friends
RequestTeleport = 22,
- /// Response sent to the agent which inititiated a teleport invitation.
+ /// Response sent to the agent which inititiated a teleport invitation
AcceptTeleport = 23,
- /// Response sent to the agent which inititiated a teleport invitation.
+ /// Response sent to the agent which inititiated a teleport invitation
DenyTeleport = 24,
- ///
- /// It will be fun once we can actually use this one.
- ///
+ /// Only useful if you have Linden permissions
GodLikeRequestTeleport = 25,
-
- /// IM to tell the user to go to an URL.
+ /// IM to tell the user to go to an URL
GotoUrl = 28,
-
- /// IM for help from the GAURDIANANGELS.
+ /// IM for help
Session911Start = 29,
-
- /// IM sent automatically on call for help,
- /// sends a lure to each Helper reached
+ /// IM sent automatically on call for help, sends a lure
+ /// to each Helper reached
Lure911 = 30,
-
- /// Like an IM but won't go to email.
+ /// Like an IM but won't go to email
FromTaskAsAlert = 31,
-
- /// IM from group officer to all group members.
+ /// IM from a group officer to all group members
GroupNotice = 32,
-
- ///
+ /// Unknown
GroupNoticeInventoryAccepted = 33,
-
- ///
+ /// Unknown
GroupNoticeInventoryDeclined = 34,
-
- ///
+ /// Accept a group invitation
GroupInvitationAccept = 35,
-
- ///
+ /// Decline a group invitation
GroupInvitationDecline = 36,
-
- ///
+ /// Unknown
GroupNoticeRequested = 37,
-
- ///
+ /// An avatar is offering you friendship
FriendshipOffered = 38,
-
- ///
+ /// An avatar has accepted your friendship offer
FriendshipAccepted = 39,
-
- ///
+ /// An avatar has declined your friendship offer
FriendshipDeclined = 40,
-
/// Indicates that a user has started typing
StartTyping = 41,
/// Indicates that a user has stopped typing
StopTyping = 42
-
-
-
-
-
}
///