Vincent Posted June 2, 2013 Group: Members Topic Count: 130 Topics Per Day: 0.03 Content Count: 528 Reputation: 18 Joined: 09/11/12 Last Seen: March 5, 2020 Share Posted June 2, 2013 hi, I would like to know how much hp increases with def investment. And I would also like to know if onlyhp increases or def too. If i use the default settings from rathena. Quote Link to comment Share on other sites More sharing options...
Jaburak Posted June 3, 2013 Group: Members Topic Count: 48 Topics Per Day: 0.01 Content Count: 1125 Reputation: 236 Joined: 07/30/12 Last Seen: April 13 Share Posted June 3, 2013 trunk/src/map/status.c if(gc->castle_id < 24 || md->class_ == MOBID_EMPERIUM) { #ifdef RENEWAL status->max_hp += 50 * gc->defense; status->max_sp += 70 * gc->defense; #else status->max_hp += 1000 * gc->defense; status->max_sp += 200 * gc->defense; #endif status->hp = status->max_hp; status->sp = status->max_sp; status->def += (gc->defense+2)/3; status->mdef += (gc->defense+2)/3; } if(md->class_ != MOBID_EMPERIUM) { status->batk += status->batk * 10*md->guardian_data->guardup_lv/100; status->rhw.atk += status->rhw.atk * 10*md->guardian_data->guardup_lv/100; status->rhw.atk2 += status->rhw.atk2 * 10*md->guardian_data->guardup_lv/100; status->aspd_rate -= 100*md->guardian_data->guardup_lv; } } Quote Link to comment Share on other sites More sharing options...
Vincent Posted June 3, 2013 Group: Members Topic Count: 130 Topics Per Day: 0.03 Content Count: 528 Reputation: 18 Joined: 09/11/12 Last Seen: March 5, 2020 Author Share Posted June 3, 2013 So if i use pre renewal: Every invest lvl Emp geht 1000 HP more? and the def from emp is: Emp Def += Invest lvl(emp def + 2 / 3)? Quote Link to comment Share on other sites More sharing options...
nanakiwurtz Posted June 3, 2013 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 1654 Reputation: 583 Joined: 08/09/12 Last Seen: January 14, 2020 Share Posted June 3, 2013 (edited) If you use Pre-Re, yes +1000*point. Def = Emperium's def + ((point+2)/3) Edited June 3, 2013 by nanakiwurtz Quote Link to comment Share on other sites More sharing options...
Vincent Posted June 3, 2013 Group: Members Topic Count: 130 Topics Per Day: 0.03 Content Count: 528 Reputation: 18 Joined: 09/11/12 Last Seen: March 5, 2020 Author Share Posted June 3, 2013 thanks. Quote Link to comment Share on other sites More sharing options...
Question
Vincent
hi,
I would like to know how much hp increases with def investment. And I would also like to know if only
hp increases or def too. If i use the default settings from rathena.
Link to comment
Share on other sites
4 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.