How would i add *2 experience for donors in pi?
I've done it before but lost the snippet I found it in.
I know it's in playerassistant.java and under public boolean addskillxp. just needa know the formula.

Nevermind. For anyone else that finds this post and needs it:
Code:
if (c.playerRights == 4)
amount = (int)(amount * 2.5);
if (c.playerRights == 5)
amount = (int)(amount * 5);
if (c.playerRights == 6)
amount = (int)(amount * 10);