Davi Posted November 20, 2017 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 28 Reputation: 0 Joined: 10/12/15 Last Seen: March 14, 2018 Share Posted November 20, 2017 Hello guyz I want to increase speed of chain lightning skill hits, it's not about delay/cooldown. this skill has 4 hits, and it's slow. Quote Link to comment Share on other sites More sharing options...
0 Scanty Posted November 20, 2017 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 90 Reputation: 26 Joined: 11/08/15 Last Seen: Thursday at 06:01 AM Share Posted November 20, 2017 (edited) Alright. src/map/skill.cpp Line: 4113 case WL_CHAINLIGHTNING_ATK: { skill_attack(BF_MAGIC,src,src,target,skl->skill_id,skl->skill_lv,tick,skl->flag); // Hit a Lightning on the current Target skill_toggle_magicpower(src, skl->skill_id); // Only the first hit will be amplified if( skl->type < (4 + skl->skill_lv - 1) && skl->x < 3 ) { // Remaining Chains Hit struct block_list *nbl = NULL; // Next Target of Chain nbl = battle_getenemyarea(src, target->x, target->y, (skl->type>2)?2:3, // After 2 bounces, it will bounce to other targets in 7x7 range. BL_CHAR|BL_SKILL, target->id); // Search for a new Target around current one... if( nbl == NULL ) skl->x++; else skl->x = 0; skill_addtimerskill(src, tick + 651, (nbl?nbl:target)->id, skl->x, 0, WL_CHAINLIGHTNING_ATK, skl->skill_lv, skl->type + 1, skl->flag); } } This line: skill_addtimerskill(src, tick + 651, (nbl?nbl:target)->id, skl->x, 0, WL_CHAINLIGHTNING_ATK, skl->skill_lv, skl->type + 1, skl->flag); change: 651 to 100 or a number < 651 is the speed in miliseconds i guess?. in 100 Chain Lighthing hits are very fast. Save and compile your svr. Edited November 20, 2017 by Scanty Quote Link to comment Share on other sites More sharing options...
0 Davi Posted November 22, 2017 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 28 Reputation: 0 Joined: 10/12/15 Last Seen: March 14, 2018 Author Share Posted November 22, 2017 Thanks so much, it worked but, there is another little problem, when i use the skill, sometimes casts 2hits at the same time. (the 2 first hits, 2 last hits, or both) Is possible to make the same time always exactly ? Obs: i changed 651 to 300. Thanks! Quote Link to comment Share on other sites More sharing options...
Question
Davi
Hello guyz
I want to increase speed of chain lightning skill hits, it's not about delay/cooldown.
this skill has 4 hits, and it's slow.
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.