- Joined
- May 23, 2008
- Messages
- 628
- Reaction score
- 4
Credits to my awesome developer/code fixer, Traitor. 
The difference between this one and the other is this one updates and you don't have to cc or re-log and it tells you how much fame you gained.
Go in NpcConversationManager.java
Replace your old public void gainfame with

The difference between this one and the other is this one updates and you don't have to cc or re-log and it tells you how much fame you gained.
Go in NpcConversationManager.java
Replace your old public void gainfame with
Code:
public void gainFame(int fame) {
getPlayer().gainFame(fame);
getPlayer().updateSingleStat(MapleStat.FAME, Integer.valueOf(getPlayer().getFame()));
getPlayer().getClient().getSession().write(MaplePacketCreator.serverNotice(6, "You have gained (+" + fame +") fame."));
}