Hello,
I'm trying to make a little autobuff tool but there is one problem. I'm using all information about the skill from the .pk2-files, little example:
Code:
ID;TypeName;Name;Required Level;Unknown;Unknown;CastTime;CoolDown;Duration;RequiredMP...
0070;SKILL_CH_LIGHTNING_GWANTONG_C_01;Speed - Piercing Force;48;1000;1500;1000;3000;536975;259;258;1;274;2;0;1;581
0071;SKILL_CH_LIGHTNING_GYEONGGONG_A_01;Grass Walk - Flow;12;0;0;0;2000;355462;260;0;1;274;1;0;1;98
Well, the Grass Walk - Flow skill needs 0ms to be casted and its CoolDown time is 2000ms. So I send the packet to cast Grass Walk - Flow, Sleeping/waiting 0ms and sending the next packet to cast for example Speed - Piercing Force. But the CastTime of this skill has to be wrong, because it's only 1000ms, but in real my char needs about 3secs..but my little tool reads the 1000 and sleeps 1000ms and sending the next packet. But sometimes it happens that I'm sending all CastSkill-Packets, but my Char doesn't cast all because I'm sending the packets too fast (because the CastTime is too low)..does anybody know a solution? And sorry for my badass english.