 |
|
 |
|
|
Author |
Message |
Rippi
Joined: 10 Jun 2008 Posts: 1
|
Posted: Tue Jun 10, 2008 12:31 pm Post subject: upload one raid and various events in note |
|
|
Hello,
our actual workflow to enter data into eqdkp is nasty (lot of excel-sheets), since I'm in the rank of an officer(so i have to deal with it) i think (and started) about programming something in .php to make this process a bit more easy.
After a first Alpha presentation of my system, a friend said, that there is already a system that fit's to our needs - guess yes it's your LogParser
Ok to break it down...
We have one Raid and different Events/Mobs
1. -- Start --- /*event - start - 2
2. -- Mob 1 --- /*event - Mob1 - 2
3. -- Mob 2 --- /*event - Mob2 - 2
5. -- End --- /*event - end - 3
i need the Raid-Entry into EQDKP like:
_____
Date // Name // Note // Value
04/08/08 // multi zone raid // start(2), Named1 (2), Named2 (2), end (3) // 9.00
______
The problem is, i can't find a hint how to enter eventnames (*event Named1 - 2 ) into the note field for all events of the evening
if i set the upload-Event representation to: RAID , i get a raid entry for every event, and as note the name of the event.
if i set the upload-Event representation to: inverted individual adjustments , i get one Entry (as needed) but no entry into the notes.
/Rippi |
|
Back to top |
|
 |
Lokorin Site Admin
Joined: 03 Apr 2006 Posts: 697
|
Posted: Sun Jun 22, 2008 10:06 am Post subject: Re: upload one raid and various events in note |
|
|
| Rippi wrote: |
The problem is, i can't find a hint how to enter eventnames (*event Named1 - 2 ) into the note field for all events of the evening
if i set the upload-Event representation to: RAID , i get a raid entry for every event, and as note the name of the event.
if i set the upload-Event representation to: inverted individual adjustments , i get one Entry (as needed) but no entry into the notes. |
The reward interval and event note formats are rather limited. I'm afraid they won't be able to do what you want.
You are however more than welcome to add such functionality. The note of the single event for inverted individual adjustments is set by the EQDKP plugin. More specifically in dkprpc.php around line 570, during the construction of "$multipurposeRaid" (the class is defined in util.php). "$rewData", "$eventData" and "$dayData" contain the information about the reward intervals, events and the general raid itself respectively. The data structure is documented in the method's comments.
You could thereby extract the desired information from the raid's data, construct the note of the desired format and then give it as the third argument to the DkplpRaid constructor, which should cause it to become the event's note. Feel free to ask in the dev forum if you want more help. |
|
Back to top |
|
 |
|
|