New user here. If this is obvious to everyone I apologize in advance. When reading the "KissAssist Instructions & Settings Info", there were recurring settings in the .ini toon files that were listed as "Need more info." As a commercial Windows dev, I can see what the writer is attempting in at least one instance.
Many of the spots under [] sections have a setting that would look like this.
There is no description for the DSPSize nor the value it should be set to. This [Section name]Size setting seems fairly common in many other sections as well. The way I understand reading .ini files, there is an obvious reason for this. The developer wants to know how many entries to read. That's why in this case the value is set to 20. There are 20 DPS(x) entries. While it is possible to guess and check for the end of a list, the coding is a little more complicated. I can't tell if the developer was trying to make the code easier, faster or both.
While I can't tell how it would behave if the value doesn't exist or is too long, I'm fairly certain if it is set too small, the program reading the .ini file will skip over the extra entries. Ex: If DPSSize was set to 10, I believe any setting for DSP11 and higher would be skipped and ignored.
Just FYI if I am correct and someone wants to make the manual more complete.
Edit: Apologizes, after reading more, was in the wrong forum. Hopefully moved to the correct forum.
Many of the spots under [] sections have a setting that would look like this.
Rich (BB code):
[DPS]
DPSOn=0
DPSCOn=0
DPSSize=20
DPSSkip=20
DPSInterval=2
DPS1=NULL
DPS2=NULL
DPS3=NULL
DPS4=NULL
DPS5=NULL
DPS6=NULL
DPS7=NULL
DPS8=NULL
DPS9=NULL
DPS10=NULL
DPS11=NULL
DPS12=NULL
DPS13=NULL
DPS14=NULL
DPS15=NULL
DPS16=NULL
DPS17=NULL
DPS18=NULL
DPS19=NULL
DPS20=NULL
DebuffAllOn=0
There is no description for the DSPSize nor the value it should be set to. This [Section name]Size setting seems fairly common in many other sections as well. The way I understand reading .ini files, there is an obvious reason for this. The developer wants to know how many entries to read. That's why in this case the value is set to 20. There are 20 DPS(x) entries. While it is possible to guess and check for the end of a list, the coding is a little more complicated. I can't tell if the developer was trying to make the code easier, faster or both.
While I can't tell how it would behave if the value doesn't exist or is too long, I'm fairly certain if it is set too small, the program reading the .ini file will skip over the extra entries. Ex: If DPSSize was set to 10, I believe any setting for DSP11 and higher would be skipped and ignored.
Just FYI if I am correct and someone wants to make the manual more complete.
Edit: Apologizes, after reading more, was in the wrong forum. Hopefully moved to the correct forum.
Last edited:

