Jump to content
엠펠리움
  • 0

룬나이트의 룬스킬을 조정하려는데....


종이봉다리

Question

5 answers to this question

Recommended Posts

  • 1

battle.cpp 파일에서 GIANTGROWTH 를 검색하시면 

 

                if (sc->data[SC_GIANTGROWTH] && (sd->class_&MAPID_THIRDMASK) == MAPID_RUNE_KNIGHT) { // Increase damage again if Crush Strike is not active
                    if (map_flag_vs(src->m)) // Only half of the 2.5x increase on versus-type maps
                        skillratio += 125;
                    else
                        skillratio += 250;
                }

 

이부분인거 같네요 !

  • Thanks 1
Link to comment
  • 0
26 minutes ago, 종이봉다리 said:

에... 아닌 것 같습니다. 아니면 제가 못하는 거던지요. skillratio 값을 250, 300으로 바꾼다음 저장하고 솔루션 빌드까지 다시 했는데, 데미지 변화가 없어요. 그리고 확률 조절도 안보이고요. 다른 쪽도 찾아봐야겠네요.

아, 빌드를 잘못했군요;;

Link to comment
  • 0
45 minutes ago, 종이봉다리 said:

아, 빌드를 잘못했군요;;

이상하네요. battle.cpp랑 status.cpp에서 찾았는데, 힘변화랑 추가데미지만 변하네요. 확률이 15로 되있는걸 100으로 바꿔도 반응이 없고, 2.5배 증뎀으로 하려고 wd damage를 1에서 1.5로 바꾸면 오류뜨고 2로 하면 원래 데미지에서 4배가 나오고.

어찌하는게 좋을까요?

얘가 확률. 원래는 15로 되어있습니다. 이번에 룬개편되서 30퍼가 됐죠.

        case SC_GIANTGROWTH:
            val2 = 30; // Double damage success rate.
            break;

--------------------------------------------------------------------------------------------------------------

얘가 데미지랑 무기파괴확률 같은데, wd.damage가 원래 1입니다. 1.5넣어봤는데, 오류나네요. 근데 1.5가 아니라 1.25를 해야 2.5배가 되겠네요.(역시 룬개편되서 2배에서 2.5배가 됨) 

어쨋든, 얘는 소수를 넣으면 오류가 납니다. 1 + 1 / 2 를 넣어도 변화가 없어요.

        if (sc->data[SC_GIANTGROWTH] && (wd.flag&BF_SHORT) && rnd()%100 < sc->data[SC_GIANTGROWTH]->val2 && !is_infinite_defense(target, wd.flag) && !vellum_damage) {
            wd.damage <<= 2; // Double Damage
            skill_break_equip(src, src, EQP_WEAPON, 0, BCT_SELF); // Break chance happens on successful damage increase

 

Edited by 종이봉다리
Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...