Purpose: Intrest for GP in your bank (with RATES)
Difficulty: 1/10
Assumed Knowledge: Copy/paste ++ (if you wanna really get into the possablities) editing script and codeing java.
Server Base: Josh's RELOADED
Classes Modified: client.JAVA
Some people may not have known this, some people may have, but I found this pretty intresting while scanning through my source for things that may not work,
this is explaining intrest rates in your server, for you BANK ACCOUNT!!!
Procedure
Step 1: look for this-
Code:
if ((playerGameTime % 1440) == 0) { //1440 minutes = 24 hours
theres a code attached to it, (duh?) ok remove that code, It most likely doesnt work
Step 2: Heres a pretty resonable code that WILL work...
Code:
//intrest
if ((playerGameTime % 10) == 0) { //10== 10 mins
for (int i = 0; i < bankItems.length; i++) {
if (bankItems[i] == 995) {
bankItemsN[i] += ((bankItemsN / 100) * 25); //25% intrest rates
}
}
}
ok replace that with the code you just deleted, now to explain this...
"This parts"
Code:
bankItemsN[i] += ((bankItemsN[i] / 100) * 25); //25% intrest rates
25 is your intrest rate, Iv got it set to 25%, just change that to make it whatever you want 
Code:
if ((playerGameTime % 10) == 0) { //10== 10 mins
this part is the time, 10 is the number of minutes that this happens, so in this code every 10 mins they get 25% of there gp in there bank added.
Code:
if (bankItems[i] == 995)
this part 995 is the id for gp, you can edit it if you want but Idk what you would, maby add in intrest on runes or something?
Credits: Me, and Xero for makeing it in his oridginal source