Giant Whisper Posted February 2, 2019 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 190 Reputation: 3 Joined: 04/11/12 Last Seen: Sunday at 08:52 PM Share Posted February 2, 2019 Hello it is possible to have the status of pre-re in renewalin renewal the matk is very low with int 255 barely reaches matk 500 Quote Link to comment Share on other sites More sharing options...
0 lllaaazzz Posted February 3, 2019 Group: Members Topic Count: 18 Topics Per Day: 0.01 Content Count: 154 Reputation: 6 Joined: 10/14/17 Last Seen: February 16, 2019 Share Posted February 3, 2019 (edited) Yeah in status.c unsigned short status_base_matk_min(struct block_list *bl, const struct status_data* status, int level) { switch (bl->type) { case BL_PET: case BL_MOB: case BL_MER: case BL_ELEM: return status->int_ + level + status->rhw.matk * 70 / 100; case BL_HOM: return status_get_homint(bl) + level + (status_get_homint(bl) + status_get_homdex(bl)) / 5; case BL_PC: default: return status->int_ + (status->int_ / 2) + (status->dex / 5) + (status->luk / 3) + (level / 4); } } /* * Calculates maximum magic attack */ unsigned short status_base_matk_max(struct block_list *bl, const struct status_data* status, int level) { switch (bl->type) { case BL_PET: case BL_MOB: case BL_MER: case BL_ELEM: return status->int_ + level + status->rhw.matk * 130 / 100; case BL_HOM: return status_get_homint(bl) + level + (status_get_homluk(bl) + status_get_homint(bl) + status_get_homdex(bl)) / 3; case BL_PC: default: return status->int_ + (status->int_ / 2) + (status->dex / 5) + (status->luk / 3) + (level / 4); } } #endif this part is player Case BL_PC: default: return status->int_ + (status->int_ / 2) + (status->dex / 5) + (status->luk / 3) + (level / 4); Also recompile after making changes in your SRC folder Edited February 3, 2019 by lllaaazzz Quote Link to comment Share on other sites More sharing options...
0 Giant Whisper Posted February 3, 2019 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 190 Reputation: 3 Joined: 04/11/12 Last Seen: Sunday at 08:52 PM Author Share Posted February 3, 2019 (edited) well but as I modify it to be as PRE RE Edited February 3, 2019 by Giant Whisper Quote Link to comment Share on other sites More sharing options...
0 Giant Whisper Posted February 3, 2019 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 190 Reputation: 3 Joined: 04/11/12 Last Seen: Sunday at 08:52 PM Author Share Posted February 3, 2019 (edited) Edited February 3, 2019 by Giant Whisper Quote Link to comment Share on other sites More sharing options...
0 lllaaazzz Posted February 3, 2019 Group: Members Topic Count: 18 Topics Per Day: 0.01 Content Count: 154 Reputation: 6 Joined: 10/14/17 Last Seen: February 16, 2019 Share Posted February 3, 2019 4 hours ago, Giant Whisper said: well but as I modify it to be as PRE RE pretty sure the only difference is that in PRE RE matk didnt get any bonus from dex and luk , just INT so just replace it with this return status->int_ + (status->int_ / 7) * (status->int_ / 7); return status->int_ + (status->int_ / 5) * (status->int_ / 5); the top one is minimum matk and bottom is maximum Quote Link to comment Share on other sites More sharing options...
0 Giant Whisper Posted February 4, 2019 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 190 Reputation: 3 Joined: 04/11/12 Last Seen: Sunday at 08:52 PM Author Share Posted February 4, 2019 is that currently unmodified if I use @allstats all 255 int, dex, str ect maximum matk approximate 500 I would like the status in general to be as always in pre re but using Re Quote Link to comment Share on other sites More sharing options...
0 lllaaazzz Posted February 7, 2019 Group: Members Topic Count: 18 Topics Per Day: 0.01 Content Count: 154 Reputation: 6 Joined: 10/14/17 Last Seen: February 16, 2019 Share Posted February 7, 2019 On 2/3/2019 at 8:27 PM, Giant Whisper said: is that currently unmodified if I use @allstats all 255 int, dex, str ect maximum matk approximate 500 I would like the status in general to be as always in pre re but using Re Yeah But in general pre re formula would equial to less the re formula (i think lol) Quote Link to comment Share on other sites More sharing options...
Question
Giant Whisper
in renewal the matk is very low with int 255 barely reaches matk 500
Link to comment
Share on other sites
6 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.