Thanks for replying has no way do not function ?
And how do I show the name vip pack example
[beret] opened pack guild [pack of 1 to 5 guild] and [item pack gain guild]
Example:
setarray .@item[0],26001,26002,26003,26004,26005,26006,26007,26008,26009;
announce "["+strcharinfo(0)+"] opened "+getitemname(.Item[.@i])+" and obtained [item gain of some box]",0;
I am creating some pack guilds, I wonder how I can make the following announce.
[beret] opened pack guild [pack of 1 to 5 guild] and [item pack gain guild]
make the skill type BF_MISC for it not to be reducible...and modify its skillratio damage @ battle_calc_misc_attack
Thank you malufett now I understand.
A question. How do the skill damage sum each hit.
Example: 5 damage the 600 sum will appear on each hit 600.
How do I see the descriptions of the skill of the luafiles of the kro in Korean. I can see only so.
³»¿ë : ^777777ÀÚ¿¬ ü·Â ȸº¹¼Óµµ¸¦ Çâ»ó½ÃŲ´Ù. MaxHP ¿¡ ÀÇÇØ¼ ±âº»¼öÄ¡ º¸´Ù ȸº¹·®ÀÌ ´Ã¾î³ª°Ô µÈ´Ù.^000000
Hello rathena was creating some custom skills, wanted to know the following.
- How do I remove the damage fixed.
- How do I place a delay of 0.5 seconds each hit of the skill.
Hmm.. I just tested and it seems to work fine for me. Try checking your config/access.php file. There are two settings there, one for players and the other for a GM trying to change another account's character slot. (I tested using the default, no modifications file.) Let me know if you continue to have problems.
Reinstalled the cp and it worked now xantara thanks.
In the case of skill_lv.
skillratio += 40 * skill_lv; //Each level increases 40%.
and
skillratio -= 40 * skill_lv; //Each level reduces -40%.
One last thing is the following
case WL_FROSTMISTY:
skillratio += 100 + 100 * skill_lv;
RE_LVL_DMOD(100); //What do you mean this RE_LVL_DMOD (100) ?
break;
If I want a skillratio of 400 to 600% as would be ?
If I put this way
skillratio += 40; //in this case the damage is increased by 40% correct ?
or
skillratio-= 20; // Now I think I understand it if looks like this would be 40-20 = 20% ?
Hello rathena I am wanting to change some skill, more want to know how can I do the calculation:
Example: In irowiki says that Storm Gust.
The calculation is this:
case WZ_STORMGUST:
skillratio += 40*skill_lv;
break;
How does the calculation of skill ?
Another thing is what is the difference between.
skillratio +=
and
skillratio -=