Thank you! I appreciate you reply but in /src/config.cpp I don't have the variable:
g_dwSkillBookNextReadMax
Other files would be ok.
Meanwhile I noticed my config.cpp has:
char g_szPublicIP[16] = "0";
char g_szInternalIP[16] = "192.168.188";
Would this be something I can use or should I follow your changes but g_dwSkillBookNextReadMax not found.
Thank you in advance!
Big Edit: My findings below my source is definitely different than yours has a more spread out config.cpp:
in char_skill.cpp:
const int aiGrandMasterSkillBookMaxCount_euckr[10] = {
5, 7, 9, 11, 13, 15, 18, 23, 25, 30};
iMinReadCount = aiGrandMasterSkillBookMinCount_euckr[idx];
iMaxReadCount = aiGrandMasterSkillBookMaxCount_euckr[idx];
iBookCount = aiGrandMasterSkillBookCountForLevelUp_euckr[idx];}
if (FindAffect(AFFECT_SKILL_BOOK_BONUS))
{ if (iBookCount&1)
iBookCount = iBookCount / 2 + 1; else
iBookCount = iBookCount / 2;
RemoveAffect(AFFECT_SKILL_BOOK_BONUS);}
int n = number(1, iBookCount);
sys_log(0, "Number(%d)", n);
DWORD nextTime = get_global_time() + number(28800, 43200);
sys_log(0, "GrandMaster SkillBookCount min %d cur %d max %d (next_time=%d)", iMinReadCount, iTotalReadCount, iMaxReadCount, nextTime);
Maybe more important hereby a pastebin of my config.cpp [Hidden Content]
(I don't know how to put a spoiler sorry)