redclub00 Posted December 15, 2016 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 18 Reputation: 0 Joined: 03/22/16 Last Seen: January 27 Share Posted December 15, 2016 mga sir baka may alam kayo kung pano ayusin ung delay after body reloc. hindi kase nag rerepeat ung cooldown while using body reloc. sana may mka tulong .salamat Quote Link to comment Share on other sites More sharing options...
HappyMan Posted December 15, 2016 Group: Members Topic Count: 20 Topics Per Day: 0.01 Content Count: 191 Reputation: 25 Joined: 07/19/14 Last Seen: June 26, 2019 Share Posted December 15, 2016 try mo iadjust ung skill delay dun sa db mo. Quote Link to comment Share on other sites More sharing options...
redclub00 Posted December 15, 2016 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 18 Reputation: 0 Joined: 03/22/16 Last Seen: January 27 Author Share Posted December 15, 2016 1 hour ago, HappyMan said: try mo iadjust ung skill delay dun sa db mo. nagawa ko na un sir e. tinaasan ko ung delay. pero hindi umuulit ung cool down ng asura pag ka body reloc ko. so nkaka br ako ng madami sa isang cool down ng asura lang Quote Link to comment Share on other sites More sharing options...
Athan17 Posted December 15, 2016 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 57 Reputation: 16 Joined: 09/26/16 Last Seen: August 16, 2020 Share Posted December 15, 2016 pag ayaw parin, source edit na. src/map/skill.c if (sd) skill_blockpc_start (sd, MO_EXTREMITYFIST, 3000); change to: if (sd) { skill_blockpc_start (sd, MO_EXTREMITYFIST, 3000); skill_blockpc_start (sd, MO_BODYRELOCATION, 3000); // Add cooldown after body reloc, 3000 means 3seconds } Quote Link to comment Share on other sites More sharing options...
redclub00 Posted December 16, 2016 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 18 Reputation: 0 Joined: 03/22/16 Last Seen: January 27 Author Share Posted December 16, 2016 21 hours ago, Athan17 said: pag ayaw parin, source edit na. src/map/skill.c if (sd) skill_blockpc_start (sd, MO_EXTREMITYFIST, 3000); change to: if (sd) { skill_blockpc_start (sd, MO_EXTREMITYFIST, 3000); skill_blockpc_start (sd, MO_BODYRELOCATION, 3000); // Add cooldown after body reloc, 3000 means 3seconds } sir salamat po dito .susubukan ko na to ngayon .sana makatulong .salamat po ng marami Quote Link to comment Share on other sites More sharing options...
redclub00 Posted December 16, 2016 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 18 Reputation: 0 Joined: 03/22/16 Last Seen: January 27 Author Share Posted December 16, 2016 On 12/16/2016 at 0:15 AM, Athan17 said: pag ayaw parin, source edit na. src/map/skill.c if (sd) skill_blockpc_start (sd, MO_EXTREMITYFIST, 3000); change to: if (sd) { skill_blockpc_start (sd, MO_EXTREMITYFIST, 3000); skill_blockpc_start (sd, MO_BODYRELOCATION, 3000); // Add cooldown after body reloc, 3000 means 3seconds } ganun parin pala sir. nag ka cool down lang ung body reloc. hindi umuulit ung cooldown ng asura pag nag body reloc ako Quote Link to comment Share on other sites More sharing options...
Athan17 Posted December 17, 2016 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 57 Reputation: 16 Joined: 09/26/16 Last Seen: August 16, 2020 Share Posted December 17, 2016 ahh, sorry, didnt understand the question earlier. bale, ang gusto mo is, reset cooldown ng asura kada body reloc right? src/map/skill.c find: int skill_blockpc_clear(struct map_session_data *sd); add below: int skill_blockpc_skill_clear(struct map_session_data *sd, int skillid); //For skill specific reset src/map/skill.c /** * Function similar to skill_blockpc_clear [Athan] * @param sd the player * @param skill_id the skill which should be cleared * @return 1 if successful, -1 otherwise, 0 if skill_id is not found in scd */ int skill_blockpc_skill_clear(struct map_session_data *sd, int skill_id) { int i; nullpo_ret(sd); if (!skill_id || !sd) return -1; ARR_FIND(0, MAX_SKILLCOOLDOWN, i, sd->scd[i] && sd->scd[i]->skill_id == skill_id); if (sd->scd[i] && skill_id) { delete_timer(sd->scd[i]->timer, skill_blockpc_end); aFree(sd->scd[i]); sd->scd[i] = NULL; clif_skill_cooldown(sd, skill_id, 0); } else return 0; return 1; } then add: if (sd) { skill_blockpc_skill_clear(sd,MO_EXTREMITYFIST); skill_blockpc_start (sd, MO_EXTREMITYFIST, 3000); } hindi lang ako marunong ng reset cooldown sa client, pero gumagana na yan, tested in my offline client, gonna implement this also XD Quote Link to comment Share on other sites More sharing options...
redclub00 Posted December 17, 2016 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 18 Reputation: 0 Joined: 03/22/16 Last Seen: January 27 Author Share Posted December 17, 2016 5 hours ago, Athan17 said: ahh, sorry, didnt understand the question earlier. bale, ang gusto mo is, reset cooldown ng asura kada body reloc right? src/map/skill.c find: int skill_blockpc_clear(struct map_session_data *sd); add below: int skill_blockpc_skill_clear(struct map_session_data *sd, int skillid); //For skill specific reset src/map/skill.c /** * Function similar to skill_blockpc_clear [Athan] * @param sd the player * @param skill_id the skill which should be cleared * @return 1 if successful, -1 otherwise, 0 if skill_id is not found in scd */ int skill_blockpc_skill_clear(struct map_session_data *sd, int skill_id) { int i; nullpo_ret(sd); if (!skill_id || !sd) return -1; ARR_FIND(0, MAX_SKILLCOOLDOWN, i, sd->scd[i] && sd->scd[i]->skill_id == skill_id); if (sd->scd[i] && skill_id) { delete_timer(sd->scd[i]->timer, skill_blockpc_end); aFree(sd->scd[i]); sd->scd[i] = NULL; clif_skill_cooldown(sd, skill_id, 0); } else return 0; return 1; } then add: if (sd) { skill_blockpc_skill_clear(sd,MO_EXTREMITYFIST); skill_blockpc_start (sd, MO_EXTREMITYFIST, 3000); } hindi lang ako marunong ng reset cooldown sa client, pero gumagana na yan, tested in my offline client, gonna implement this also XD aun oo sir un ung hindi ko mahanap at di ko alam pano gagawin. dpat mag rereset ung coold down ng asura kada br. sige sir try ko ngayon to ulit. sorry late reply. salamat sir sa tulong thank you ng marami Quote Link to comment Share on other sites More sharing options...
redclub00 Posted December 19, 2016 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 18 Reputation: 0 Joined: 03/22/16 Last Seen: January 27 Author Share Posted December 19, 2016 On 12/17/2016 at 1:27 PM, Athan17 said: ahh, sorry, didnt understand the question earlier. bale, ang gusto mo is, reset cooldown ng asura kada body reloc right? src/map/skill.c find: int skill_blockpc_clear(struct map_session_data *sd); add below: int skill_blockpc_skill_clear(struct map_session_data *sd, int skillid); //For skill specific reset src/map/skill.c /** * Function similar to skill_blockpc_clear [Athan] * @param sd the player * @param skill_id the skill which should be cleared * @return 1 if successful, -1 otherwise, 0 if skill_id is not found in scd */ int skill_blockpc_skill_clear(struct map_session_data *sd, int skill_id) { int i; nullpo_ret(sd); if (!skill_id || !sd) return -1; ARR_FIND(0, MAX_SKILLCOOLDOWN, i, sd->scd[i] && sd->scd[i]->skill_id == skill_id); if (sd->scd[i] && skill_id) { delete_timer(sd->scd[i]->timer, skill_blockpc_end); aFree(sd->scd[i]); sd->scd[i] = NULL; clif_skill_cooldown(sd, skill_id, 0); } else return 0; return 1; } then add: if (sd) { skill_blockpc_skill_clear(sd,MO_EXTREMITYFIST); skill_blockpc_start (sd, MO_EXTREMITYFIST, 3000); } hindi lang ako marunong ng reset cooldown sa client, pero gumagana na yan, tested in my offline client, gonna implement this also XD slamat dito sir. gumana saakin. publema ko naman ngayon ung cooldown sa client haha. kaya pala sa ibang client parang nka patong ung cooldown .pero salamat ulit Quote Link to comment Share on other sites More sharing options...
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.