|
|
Author |
Message |
SuprSurfr
Joined: 24 May 2007 Posts: 21
|
Posted: Fri Aug 24, 2007 12:48 am Post subject: EQ2 LU38 |
|
|
I have a Dev friend that is going to add logging functions for when a player leaves and joins the raid.
WOots! |
|
Back to top |
|
 |
SuprSurfr
Joined: 24 May 2007 Posts: 21
|
Posted: Wed Sep 12, 2007 6:02 pm Post subject: |
|
|
Grouping/Raiding
When a player joins or leaves a raid, other members in the raid receive notification in the raid channel.
Moving or swapping players between groups should not display any notifications.
Players in the same group as the new member joining/leaving will receive 2 notifications, one in the raid channel and one in the group channel. This is by design so log parsers can track players joining and leaving.
Ok, now that LU38 is active, what do i need to change in my patterns so that it picks up when a member joins and leaves the raid?
Thanks! |
|
Back to top |
|
 |
SuprSurfr
Joined: 24 May 2007 Posts: 21
|
Posted: Wed Sep 12, 2007 11:46 pm Post subject: |
|
|
Here is a sample of the logfile.
| Code: |
(1189640689)[Wed Sep 12 19:44:49 2007] You invite breeez's group to join your group.
(1189640847)[Wed Sep 12 19:47:27 2007] You invite breeez's group to join your group.
(1189640849)[Wed Sep 12 19:47:29 2007] You form a raid with Breeez.
(1189640864)[Wed Sep 12 19:47:44 2007] Smirks has joined the raid.
(1189640876)[Wed Sep 12 19:47:56 2007] Smirks has left the raid.
(1189640894)[Wed Sep 12 19:48:14 2007] Your group has left the raid party.
(1189640894)[Wed Sep 12 19:48:14 2007] The group has disbanded |
. |
|
Back to top |
|
 |
Lokorin Site Admin
Joined: 03 Apr 2006 Posts: 697
|
Posted: Fri Sep 14, 2007 6:32 pm Post subject: |
|
|
| SuprSurfr wrote: |
| Ok, now that LU38 is active, what do i need to change in my patterns so that it picks up when a member joins and leaves the raid? |
Join pattern:
| Code: |
| \((\d+)\)\[.*?\] (\w+) has joined the raid. |
Join format:
Leave pattern:
| Code: |
| \((\d+)\)\[.*?\] (\w+) has left the raid. |
Leave format:
|
|
Back to top |
|
 |
SuprSurfr
Joined: 24 May 2007 Posts: 21
|
Posted: Sun Sep 16, 2007 7:05 pm Post subject: |
|
|
Thanks Lokorin! |
|
Back to top |
|
 |
|