Jump to content

malufett

Members
  • Posts

    554
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by malufett

  1. @skill.c case RG_BACKSTAP: { -int dir = map_calc_dir(src, bl->x, bl->y), t_dir = unit_getdir(bl); -if ((!check_distance_bl(src, bl, 0) && !map_check_dir(dir, t_dir)) || bl->type == BL_SKILL) { +if (!check_distance_bl(src, bl, 0) || bl->type == BL_SKILL) { status_change_end(src, SC_HIDING, INVALID_TIMER); skill_attack(BF_WEAPON, src, src, bl, skillid, skilllv, tick, flag); -dir = dir < 4 ? dir+4 : dir-4; // change direction [Celest] -unit_setdir(bl,dir); } else if (sd) clif_skill_fail(sd,skillid,USESKILL_FAIL_LEVEL,0); } break; edit and recompile
  2. I agree on Ai4rei...but if there is a way to refresh everything the better(like your just restarting the server)...
  3. lol...it is the same..^^, http://eathena.ws/wiki/index.php?title=Sclientinfo.xml
  4. 0?? that is for Korea..this will turn all description in unknown symbols... better change the font style..I know there is a link in eA on how change that...
  5. make sure your data files are updated.. patcher for kro: http://rathena.org/board/topic/62758-ro-patcher-lite-v241574-last-updated-20120415/
  6. they are just the same..but the other one is bundled as it says(contains for kRO and kRO_RE)...
  7. what client date are you using?
  8. malufett

    Status Frost

    ok..if your using Visual Studio right click this part 'status_get_sc_def(bl, type, rate, tick, flag);' then select 'Go to Definition' then it will redirect you to the location of the code..if you can't still find it upload your status.c and I will be the one to do it...
  9. malufett

    Status Frost

    wew.... seriously you can't find this piece of code?? //Applies SC defense to a given status change. //Returns the adjusted duration based on flag values. //the flag values are the same as in status_change_start. int status_get_sc_def(struct block_list *bl, enum sc_type type, int rate, int tick, int flag) { int sc_def, tick_def = 0; struct status_data* status; struct status_change* sc; struct map_session_data *sd; nullpo_ret(bl); //Status that are blocked by Golden Thief Bug card or Wand of Hermod if (status_isimmune(bl)) switch (type) { case SC_DECREASEAGI: case SC_SILENCE: case SC_COMA: case SC_INCREASEAGI: case SC_BLESSING: case SC_SLOWPOISON: case SC_IMPOSITIO: case SC_AETERNA: case SC_SUFFRAGIUM: case SC_BENEDICTIO: case SC_PROVIDENCE: case SC_KYRIE: case SC_ASSUMPTIO: case SC_ANGELUS: case SC_MAGNIFICAT: case SC_GLORIA: case SC_WINDWALK: case SC_MAGICROD: case SC_HALLUCINATION: case SC_STONE: case SC_QUAGMIRE: case SC_SUITON: return 0; } sd = BL_CAST(BL_PC,bl); status = status_get_status_data(bl); switch (type) { case SC_STUN: case SC_POISON: case SC_DPOISON: case SC_SILENCE: case SC_BLEEDING: sc_def = 3 +status->vit; break; case SC_SLEEP: sc_def = 3 +status->int_; break; case SC_DECREASEAGI: if (sd) tick>>=1; //Half duration for players. case SC_STONE: case SC_FREEZE: sc_def = 3 +status->mdef; break; case SC_CURSE: //Special property: inmunity when luk is greater than level or zero if (status->luk > status_get_lv(bl) || status->luk == 0) return 0; else sc_def = 3 +status->luk; tick_def = status->vit; break; case SC_BLIND: sc_def = 3 +(status->vit + status->int_)/2; break; case SC_CONFUSION: sc_def = 3 +(status->str + status->int_)/2; break; case SC_ANKLE: if(status->mode&MD_BOSS) // Lasts 5 times less on bosses tick /= 5; sc_def = status->agi / 2; break; case SC_MAGICMIRROR: case SC_ARMORCHANGE: if (sd) //Duration greatly reduced for players. tick /= 15; //No defense against it (buff). default: //Effect that cannot be reduced? Likely a buff. if (!(rand()%10000 < rate)) return 0; return tick?tick:1; } if (sd) { if (battle_config.pc_sc_def_rate != 100) sc_def = sc_def*battle_config.pc_sc_def_rate/100; if (sc_def < battle_config.pc_max_sc_def) sc_def += (battle_config.pc_max_sc_def - sc_def)* status->luk/battle_config.pc_luk_sc_def; else sc_def = battle_config.pc_max_sc_def; if (tick_def) { if (battle_config.pc_sc_def_rate != 100) tick_def = tick_def*battle_config.pc_sc_def_rate/100; } } else { if (battle_config.mob_sc_def_rate != 100) sc_def = sc_def*battle_config.mob_sc_def_rate/100; if (sc_def < battle_config.mob_max_sc_def) sc_def += (battle_config.mob_max_sc_def - sc_def)* status->luk/battle_config.mob_luk_sc_def; else sc_def = battle_config.mob_max_sc_def; if (tick_def) { if (battle_config.mob_sc_def_rate != 100) tick_def = tick_def*battle_config.mob_sc_def_rate/100; } } sc = status_get_sc(bl); if (sc && sc->count) { if (sc->data[sC_SCRESIST]) sc_def += sc->data[sC_SCRESIST]->val1; //Status resist else if (sc->data[sC_SIEGFRIED]) sc_def += sc->data[sC_SIEGFRIED]->val3; //Status resistance. } //When no tick def, reduction is the same for both. if( !tick_def && type != SC_STONE ) //Recent tests show duration of petrify isn't reduced by MDEF. [inkfish] tick_def = sc_def; //Natural resistance if (!(flag&8)) { rate -= rate*sc_def/100; //Item resistance (only applies to rate%) if(sd && SC_COMMON_MIN <= type && type <= SC_COMMON_MAX) { if( sd->reseff[type-SC_COMMON_MIN] > 0 ) rate -= rate*sd->reseff[type-SC_COMMON_MIN]/10000; if( sd->sc.data[sC_COMMONSC_RESIST] ) rate -= rate*sd->sc.data[sC_COMMONSC_RESIST]->val1/100; } } if (!(rand()%10000 < rate)) return 0; //Why would a status start with no duration? Presume it has //duration defined elsewhere. if (!tick) return 1; //Rate reduction if (flag&2) return tick; tick -= tick*tick_def/100; // Changed to 5 seconds according to recent tests [Playtester] if (type == SC_ANKLE && tick < 5000) tick = 5000; return tick<=0?0:tick; } then how come there is a tick = status_get_sc_def(bl, type, rate, tick, flag); line in your code????
  10. malufett

    Status Frost

    use the Ctrl+F(Find) function or the Ctrl+G(Go To) function [line:4623]
  11. malufett

    Status Frost

    you can find @ status.c under status_get_sc_def
  12. Nice Ai4rei is already came here! welcome to rAthena! I love the patcher...<3
  13. @skill.c dmg.div_= pd->a_skill->div_;[/color] } } -if( dmg.flag&BF_MAGIC && ( skillid != NPC_EARTHQUAKE || (battle_config.eq_single_target_reflectable && (flag&0xFFF) == 1) ) ) +if( dmg.flag&BF_MAGIC && ( skillid != NPC_EARTHQUAKE || (battle_config.eq_single_target_reflectable && (flag&0xFFF) == 1) ) && skillid != NJ_RAIGEKISAI && skillid != NJ_RAIGEKISAI ) { // Earthquake on multiple targets is not counted as a target skill. [inkfish] correct me if the skill ids are correct NJ_HYOUSYOURAKU - Falling Ice Pillar NJ_RAIGEKISAI - Lightning Crash
  14. @status.c case SC_RUWACH: case SC_SIGHTBLASTER: val3 = skill_get_splash(val2, val1); //Val2 should bring the skill-id. -val2 = tick/250; +val2 = tick/2000; tick_time = 10; // [GodLesZ] tick time break; case SC_SIGHT: case SC_RUWACH: case SC_SIGHTBLASTER: map_foreachinrange( status_change_timer_sub, bl, sce->val3, BL_CHAR, bl, sce, type, tick); if( --(sce->val2)>0 ){ -sc_timer_next(250+tick, status_change_timer, bl->id, data); +sc_timer_next(2000+tick, status_change_timer, bl->id, data); return 0; } break;
  15. malufett

    Status Frost

    use this setting however this may affect other statuses better use this... @status.c if (sd) tick>>=1; //Half duration for players. case SC_STONE: case SC_FREEZE: sc_def = 3 +status->mdef; +if(sd && type == SC_FREEZE && sc_def >= 51 && status->luk >= 110) + sc_def = battle_config.pc_max_sc_def; break; then recompile
  16. is there any modification added to your server?
  17. hmm.. diba pwede mo naman iset sa import kung anung delimiter ang gagamitin...??
  18. hmm..tanung ko lang kung anung pinagkaiba nito sa import/export ng ms office(excel)???
  19. ah??I don't get it...hehe..
  20. aw..is this already implemented in rAthena???
  21. what do you mean by connect to kRO? if you want to login the go to this site...ro.game.gnjoy.com
  22. @status.c case SC_CONCENTRATE: status_change_end(bl, SC_HIDING, INVALID_TIMER); status_change_end(bl, SC_CLOAKING, INVALID_TIMER); status_change_end(bl, SC_CLOAKINGEXCEED, INVALID_TIMER); status_change_end(bl, SC_CAMOUFLAGE, INVALID_TIMER); status_change_end(bl, SC__INVISIBILITY, INVALID_TIMER); +if ( type == SC_SIGHT && tsc && tsc->data[sC__SHADOWFORM] +&& (tsc->data[sC__SHADOWFORM]->val1 * 10) < rnd()%100 ) + status_change_end(bl, SC__INVISIBILITY, INVALID_TIMER); break; case SC_RUWACH: /* ���A�t */ if (tsc && (tsc->data[sC_HIDING] || tsc->data[sC_CLOAKING] || tsc->data[sC_CAMOUFLAGE] || tsc->data[sC_CLOAKINGEXCEED] || tsc->data[sC__INVISIBILITY])) { status_change_end(bl, SC_HIDING, INVALID_TIMER); status_change_end(bl, SC_CLOAKING, INVALID_TIMER); status_change_end(bl, SC_CAMOUFLAGE, INVALID_TIMER); status_change_end(bl, SC_CLOAKINGEXCEED, INVALID_TIMER); status_change_end(bl, SC__INVISIBILITY, INVALID_TIMER); if(battle_check_target( src, bl, BCT_ENEMY ) > 0) skill_attack(BF_MAGIC,src,src,bl,AL_RUWACH,1,tick,0); -} +}else if (tsc && tsc->data[sC__SHADOWFORM] +&& (tsc->data[sC__SHADOWFORM]->val1 * 10) < rnd()%100 ) + status_change_end(bl, SC__INVISIBILITY, INVALID_TIMER); break; please report any bugs so we can fix it soon..^^ hope it helps...
  23. use diff patcher or when patching use the [custom window title] patch then change to your desire name..
  24. mid and low rate better use renewal casting and high rate would be the old mechanics..but it depends on the theme of the server...
×
×
  • Create New...