|
|
Author |
Message |
Armageden
Joined: 04 Oct 2006 Posts: 9
|
Posted: Wed Oct 04, 2006 5:04 pm Post subject: Dkp for time and loot |
|
|
Our guild uses a little different method to reward dkp. We use the following rules to do so.
2 pts for being in raid from start to finish
1 pt for every hour
And this is the part i dont know how to config.
1 Pt for every epic that drop. Is there a way to make it calculate this automatically. Currently i parse the thread and then i have to count the number of drops in each time interval and i add that number to the bonus (participent). As you guys know this is alot of work still. Can you please help me?? |
|
Back to top |
|
 |
Lokorin Site Admin
Joined: 03 Apr 2006 Posts: 697
|
Posted: Wed Oct 04, 2006 7:10 pm Post subject: Re: Dkp for time and loot |
|
|
| Armageden wrote: |
| 1 Pt for every epic that drop. Is there a way to make it calculate this automatically. Currently i parse the thread and then i have to count the number of drops in each time interval and i add that number to the bonus (participent). |
One way would be to generate an event whenever an epic item drops. That could be done by setting the event pattern to something like
| Code: |
| RaidInfo>Loot>key\d+:Time<(\d+)>Color<ffff8000>ItemName<(.+) |
and the event format to
assuming that orange is epic.
That should create an event named after the item that rewards 1 DKP every time an item with color ffff8000 (orange) drops (but I have not tested it). |
|
Back to top |
|
 |
Armageden
Joined: 04 Oct 2006 Posts: 9
|
Posted: Wed Oct 04, 2006 8:15 pm Post subject: |
|
|
Didnt seem to work at all.. Not sure if i am doing something wrong or not. |
|
Back to top |
|
 |
Armageden
Joined: 04 Oct 2006 Posts: 9
|
Posted: Thu Oct 05, 2006 2:45 pm Post subject: |
|
|
Is there any other advice that you can give to me?? |
|
Back to top |
|
 |
Lokorin Site Admin
Joined: 03 Apr 2006 Posts: 697
|
Posted: Thu Oct 05, 2006 3:40 pm Post subject: |
|
|
I see two possible reasons for the problem: either the log being parsed is of the old format or orange is not the color of epic items.
If it's the former then you should use
| Code: |
| RaidInfo>Loot>key\d+:ItemName<(.+)>Color<ffff8000>Time<(\d{2})/(\d{2})/(\d{2}) (\d{2})#:(\d{2})#:(\d{2}) |
and
| Code: |
| $4|$2|$3|$5|$6|$7|$1|1 |
, if it's the latter (i.e. that epic are purple, not orange) then you should use
| Code: |
| RaidInfo>Loot>key\d+:Time<(\d+)>Color<ffa335ee>ItemName<(.+) |
|
|
Back to top |
|
 |
Armageden
Joined: 04 Oct 2006 Posts: 9
|
Posted: Sat Oct 07, 2006 3:49 am Post subject: |
|
|
Awsome that seemed to work. i hade to use
RaidInfo>Loot>key\d+:Time<(\d+)>Color<ffa335ee>ItemName<(.+)
0|0|0|0|0|$1|$2|1
It i wanted it to give pts to all loot what would i do? |
|
Back to top |
|
 |
Lokorin Site Admin
Joined: 03 Apr 2006 Posts: 697
|
Posted: Sat Oct 07, 2006 8:42 am Post subject: |
|
|
| Armageden wrote: |
| It i wanted it to give pts to all loot what would i do? |
You would have to change the pattern to
| Code: |
| RaidInfo>Loot>key\d+:Time<(\d+)>ItemName<(.+) |
(i.e. take out the color requirement). |
|
Back to top |
|
 |
|