AngelaKiss Posted May 12, 2016 Share Posted May 12, 2016 (edited) hello my npc mailbox in towns in not working im usingi 20120410 someone knows how to fix this please it doesnt open the mail just take my money Edited May 12, 2016 by AngelaKiss Quote Link to comment Share on other sites More sharing options...
0 AngelaKiss Posted May 13, 2016 Author Share Posted May 13, 2016 i had to use shin differ, thank you guys it was langtype <3 Quote Link to comment Share on other sites More sharing options...
0 Promise Posted May 12, 2016 Share Posted May 12, 2016 src/map/mail.c int mail_openmail(struct map_session_data *sd) { nullpo_ret(sd); if( sd->state.storage_flag || sd->state.vending || sd->state.buyingstore || sd->state.trading || sd->npc_id || sd->npc_shopid ) return 0; clif_Mail_window(sd->fd, 0); return 1; } to int mail_openmail(struct map_session_data *sd) { nullpo_ret(sd); if( sd->state.storage_flag || sd->state.vending || sd->state.buyingstore || sd->state.trading ) return 0; clif_Mail_window(sd->fd, 0); return 1; } Quote Link to comment Share on other sites More sharing options...
0 pachupappy Posted May 12, 2016 Share Posted May 12, 2016 hello my npc mailbox in towns in not working im usingi 20120410 someone knows how to fix this please it doesnt open the mail just take my money try what Promise's answer. btw, what version are you using? Quote Link to comment Share on other sites More sharing options...
0 AngelaKiss Posted May 12, 2016 Author Share Posted May 12, 2016 hello my npc mailbox in towns in not working im usingi 20120410 someone knows how to fix this please it doesnt open the mail just take my money try what Promise's answer. btw, what version are you using? Im using lastest version Quote Link to comment Share on other sites More sharing options...
0 Lelouch vi Britannia Posted May 12, 2016 Share Posted May 12, 2016 Btw did you add the "Enable Mail Box for All LangTypes"(If you're using NEMO) in your clients diff? Quote Link to comment Share on other sites More sharing options...
0 AngelaKiss Posted May 12, 2016 Author Share Posted May 12, 2016 src/map/mail.c int mail_openmail(struct map_session_data *sd) { nullpo_ret(sd); if( sd->state.storage_flag || sd->state.vending || sd->state.buyingstore || sd->state.trading || sd->npc_id || sd->npc_shopid ) return 0; clif_Mail_window(sd->fd, 0); return 1; } to int mail_openmail(struct map_session_data *sd) { nullpo_ret(sd); if( sd->state.storage_flag || sd->state.vending || sd->state.buyingstore || sd->state.trading ) return 0; clif_Mail_window(sd->fd, 0); return 1; } it was already like this Btw did you add the "Enable Mail Box for All LangTypes"(If you're using NEMO) in your clients diff? nemo dont allow me to do it, it says the pattern is not found Quote Link to comment Share on other sites More sharing options...
0 Lelouch vi Britannia Posted May 13, 2016 Share Posted May 13, 2016 Try to use an old NEMO or report it https://github.com/MStr3am/NEMO/issues. If its not enable the mail box will not open becuase kRO already removed the mail func and replaced with RODEX Quote Link to comment Share on other sites More sharing options...
0 Kakaroto Posted May 13, 2016 Share Posted May 13, 2016 Try to use an old NEMO or report it https://github.com/MStr3am/NEMO/issues. If its not enable the mail box will not open becuase kRO already removed the mail func and replaced with RODEX You know when RODEX will be released in rAthena? Quote Link to comment Share on other sites More sharing options...
hello my npc mailbox in towns in not working im usingi 20120410 someone knows how to fix this please it doesnt open the mail just take my money
Edited by AngelaKissLink to comment
Share on other sites