- Joined
- Jun 24, 2008
- Messages
- 63
- Reaction score
- 7
Go into NPCConversationManager.java and add this
after
Its very simple!
just use it like this
Thanks to kakashirock for giving me the Idea!
Code:
public void giveItemBuff(int itemId){
getPlayer().setItemEffect(itemId);
}
after
Code:
public void setSkin(int color) {
getPlayer().setSkinColor(MapleSkinColor.getById(color));
getPlayer().updateSingleStat(MapleStat.SKIN, color);
getPlayer().equipChanged();
}
Its very simple!
just use it like this
PHP:
cm.giveItemBuff(itemId);
Thanks to kakashirock for giving me the Idea!