Jump to content

Element target bug


Recommended Posts

Hey guys!

i have this problem.. sometimes when i attack some mobs it shows random element

i already tried in char.pp what sonitex wrote
If someone has the same issues as me with elements sometimes being shown wrong replace this part of function in char.cpp:

for (int i = RACE_FLAG_ATT_ELEC; i <= RACE_FLAG_ATT_DARK; i = 2)

{ int diff = raceFlag - i;

if (abs(diff) <= 1024) break;

}

to this:

for (int i = RACE_FLAG_ATT_ELEC; i <= RACE_FLAG_ATT_DARK; i= 2) {

curElementBase++;

if (raceFlag & i)

break;

}

Gyazo from problem

Link to comment
Share on other sites

  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Popular Days

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.