behelit Posted February 14, 2020 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 36 Reputation: 0 Joined: 07/04/13 Last Seen: June 22, 2023 Share Posted February 14, 2020 Hi all! I figured out how to change homunculus and pet friendliness rates... But how do you change the Mercenary Loyalty rates? I can't find the configuration for it anywhere. Quote Link to comment Share on other sites More sharing options...
0 Balfear Posted February 14, 2020 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 256 Reputation: 245 Joined: 07/24/13 Last Seen: March 24 Share Posted February 14, 2020 16 minutes ago, behelit said: Hi all! I figured out how to change homunculus and pet friendliness rates... But how do you change the Mercenary Loyalty rates? I can't find the configuration for it anywhere. I think this is it: void mercenary_kills(struct mercenary_data *md){ if(md->mercenary.kill_count <= (INT_MAX-1)) //safe cap to INT_MAX md->mercenary.kill_count++; if( (md->mercenary.kill_count % 50) == 0 ) { mercenary_set_faith(md, 1); mercenary_killbonus(md); } if( md->master ) clif_mercenary_updatestatus(md->master, SP_MERCKILLS); } Try to change this value: if( (md->mercenary.kill_count % 50) == 0 ) Quote Link to comment Share on other sites More sharing options...
0 behelit Posted February 14, 2020 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 36 Reputation: 0 Joined: 07/04/13 Last Seen: June 22, 2023 Author Share Posted February 14, 2020 I could only find that in src/map/mercenary.hpp src/map/mercenary.cpp Does that mean I have to rebuild the server after the change? O_O Quote Link to comment Share on other sites More sharing options...
0 Balfear Posted February 14, 2020 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 256 Reputation: 245 Joined: 07/24/13 Last Seen: March 24 Share Posted February 14, 2020 2 hours ago, behelit said: I could only find that in src/map/mercenary.hpp src/map/mercenary.cpp Does that mean I have to rebuild the server after the change? O_O yes Quote Link to comment Share on other sites More sharing options...
0 behelit Posted February 14, 2020 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 36 Reputation: 0 Joined: 07/04/13 Last Seen: June 22, 2023 Author Share Posted February 14, 2020 Sorry, still in the semi noob zone here. Quote Link to comment Share on other sites More sharing options...
Question
behelit
Hi all! I figured out how to change homunculus and pet friendliness rates... But how do you change the Mercenary Loyalty rates? I can't find the configuration for it anywhere.
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.