cadz Posted January 16, 2013 Group: Members Topic Count: 83 Topics Per Day: 0.02 Content Count: 243 Reputation: 1 Joined: 08/29/12 Last Seen: August 1, 2021 Share Posted January 16, 2013 hi can anyone help me how to remove dispell blocking by gtb. thanks a lot in advance. Quote Link to comment Share on other sites More sharing options...
Capuche Posted January 16, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted January 16, 2013 hi can anyone help me how to remove dispell blocking by gtb. thanks a lot in advance. To remove dispell without remove status changes blocking by gtb In src/map/skill.c find case SA_DISPELL: if (flag&1 || (i = skill_get_splash(skill_id, skill_lv)) < 1) { clif_skill_nodamage(src,bl,skill_id,skill_lv,1); if((dstsd && (dstsd->class_&MAPID_UPPERMASK) == MAPID_SOUL_LINKER) || (tsc && tsc->data[sC_SPIRIT] && tsc->data[sC_SPIRIT]->val2 == SL_ROGUE) //Rogue's spirit defends againt dispel. || rnd()%100 >= 50+10*skill_lv || ( tsc && tsc->option&OPTION_MADOGEAR ) )//Mado Gear is immune to dispell according to bug report 49 [ind] { if (sd) clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); break; } if(status_isimmune(bl) || !tsc || !tsc->count) break; Remove status_isimmune(bl) if(status_isimmune(bl) || !tsc || !tsc->count) to if(!tsc || !tsc->count) then recompile. Quote Link to comment Share on other sites More sharing options...
cadz Posted January 27, 2013 Group: Members Topic Count: 83 Topics Per Day: 0.02 Content Count: 243 Reputation: 1 Joined: 08/29/12 Last Seen: August 1, 2021 Author Share Posted January 27, 2013 thanks a lot sir =) Quote Link to comment Share on other sites More sharing options...
Question
cadz
hi can anyone help me how to remove dispell blocking by gtb. thanks a lot in advance.
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.