any way to get "damage recieved" stat on the defensive reporting field?
any way to get "damage recieved" stat on the defensive reporting field?
Put the suggestion on the sourceforge site so we don't lose track of it, and we'll look at it :DOriginally Posted by underscore
Just to inform that neither Drain or added effect damage such as Algol's fire damage, aren't displayed on the parse data. (1.7.3 ver)
Not sure why, but 1.7.3 isn't working for me. Everything is set up like it would be for 1.7.2 and nothing showing up in my parse.
when did you download it? if it was before the evening of Sept 01, then you have a broken version. (the initial version of 1.7.3 was compiled with the wrong codebase)Originally Posted by Bulletbeast
I apologize if this is really obvious and I'm just not looking at this correctly but I can't get the parser to collect any data.
After I download and unzip the file and then select the fields I would like the parses to read, are there any other settings I'm supposed to change before it will work? is there a command I have to use in-game to make it run. Please help me out![]()
KSDI which version do you have?
dvs should 'just work' - in fact, head to the technical support thread on this if you'd like more indepth help^^
I downloaded ver 1.7.3 earlier today, I'll keep playing with it see if i can make it work.
What's your debug.log file read as after you open it and try to parse?
Is throwing critical errors and exiting or just not parsing?
9/3/2007 2:37:42 AM - DvsChatmon_3: Attempting to connect to Final Fantasy.
9/3/2007 2:37:42 AM - DvsChatmon_3: ERROR: An exception occured while trying to connect to Final Fantasy. Message = Access is denied
9/3/2007 2:37:47 AM - DvsChatmon_3: Attempting to connect to Final Fantasy.
9/3/2007 2:37:47 AM - DvsChatmon_3: ERROR: An exception occured while trying to connect to Final Fantasy. Message = Access is denied
that's the message i keep getting
ok I got it to work, just had to run it as an admin.... i hate vista
Originally Posted by KSDI
Originally Posted by Divisortheory
Even better: find a copy of 2k pro.Originally Posted by Zhais
Actually XP/XPsp2 is becoming the norm for a basic OS requirement. Lotta the current Adobe stuff for example. Might be workarounds, I dunno, I haven't really tried. I do like 2k though, my living room PC is still running it.
Please forgive my ignorance, I downloaded DvsParse after reading about it here. I don't play FFXI, but I am very interested in the modding that is done. After going through the DvsParse source and reading this post, I'm trying to figure out why it references FFXI's process space. Isn't there a log file that would give you the same information? Is the log file incomplete? Does the time delay between an event occurring and the event being written to log affect your parsing?
lolRMT Mandau.
There are about 20 logs that the chat is written to semi-temporarily in the FFXI folders. I'm personally not sure of what logs they choose to start with or when they switch over to a new one, but it goes through that rotation. It writes the same info we drag out of the memory space, including the chat type IDs, extra characters, and such. I assume that the reason he used the direct memory location instead of the logs is that its faster and/or easier than checking changes of a text log.Originally Posted by JeremyS
Also the fact that since the logs aren't cleared between restarts of FFXI, it would be rather hard for the parse program to decide which log the program starts writing to and where.
I'm not sure if other parser programs do the same procedure as dvsparse does or not... it'd be interesting to find out. Anyone know of any other parsers that disclose the source code?
lemme know if you have other questions :d I haven't looked at the source code in a while, been busy with work and play heh. And I apologize in advance for the major lack of comments ;;
edit:
gtfoOriginally Posted by Skurlover
Zhais: Spyle's Parser (and TazzyParse now? since it's a successor to spyle's) used the log files stored on the local hard drive.
basically it wouldn't log anything til it saw a file modified timestamp change in the folder, so it was always at least 50 lines behind.
Originally Posted by Amele
Ah, so I'm assuming FFXI writes to the log files every 50 lines then?
definitely like how dvsparse does it then. Information is usually updated in a second or two (excluding a bug here or there in calculations).
DvsParse hooks into the FFXI process to get the chat text before it is written to log files.Originally Posted by JeremyS