46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
|
|
export enum InstantMessageDialog
|
||
|
|
{
|
||
|
|
MessageFromAgent = 0,
|
||
|
|
MessageBox = 1,
|
||
|
|
MessageBoxCountdown = 2,
|
||
|
|
GroupInvitation = 3,
|
||
|
|
InventoryOffered = 4,
|
||
|
|
InventoryAccepted = 5,
|
||
|
|
InventoryDeclined = 6,
|
||
|
|
GroupVote = 7,
|
||
|
|
DeprecatedGroupMessage = 8,
|
||
|
|
TaskInventoryOffered = 9,
|
||
|
|
TaskInventoryAccepted = 10,
|
||
|
|
TaskInventoryDeclined = 11,
|
||
|
|
NewUserDefault = 12,
|
||
|
|
SessionAdd = 13,
|
||
|
|
SessionOfflineAdd = 14,
|
||
|
|
SessionGroupStart = 15,
|
||
|
|
SessionCardlessStart = 16,
|
||
|
|
SessionSend = 17,
|
||
|
|
SessionDrop = 18,
|
||
|
|
MessageFromObject = 19,
|
||
|
|
BusyAutoResponse = 20,
|
||
|
|
ConsoleAndChatHistory = 21,
|
||
|
|
RequestTeleport = 22,
|
||
|
|
AcceptTeleport = 23,
|
||
|
|
DenyTeleport = 24,
|
||
|
|
GodLikeRequestTeleport = 25,
|
||
|
|
RequestLure = 26,
|
||
|
|
DeprecatedGroupElection = 27,
|
||
|
|
GotoUrl = 28,
|
||
|
|
Session911Start = 29,
|
||
|
|
Lure911 = 30,
|
||
|
|
FromTaskAsAlert = 31,
|
||
|
|
GroupNotice = 32,
|
||
|
|
GroupNoticeInventoryAccepted = 33,
|
||
|
|
GroupNoticeInventoryDeclined = 34,
|
||
|
|
GroupInvitationAccept = 35,
|
||
|
|
GroupInvitationDecline = 36,
|
||
|
|
GroupNoticeRequested = 37,
|
||
|
|
FriendshipOffered = 38,
|
||
|
|
FriendshipAccepted = 39,
|
||
|
|
FriendshipDeclined = 40,
|
||
|
|
StartTyping = 41,
|
||
|
|
StopTyping = 42
|
||
|
|
}
|