So here is the new script I made for it...
if ( interestdays > 0 )
set PCmercantile to player.GetActorValue mercantile
if ( ZABankGold < 2500 )
set interest to ( interestdays * ZABankGold * ( 0.004 + ( PCmercantile / 50000 ) ) )
elseif ( ZABankGold > 2499)
set interest to ( interestdays * ZABankGold * ( 0.0055 + ( PCmercantile / 50000 ) ) )
elseif ( ZABankGold > 4999 )
set interest to ( interestdays * ZABankGold * ( 0.0065 + ( PCmercantile / 50000 ) ) )
elseif ( ZABankGold > 9999 )
set interest to ( interestdays * ZABankGold * ( 0.0075 + ( PCmercantile / 50000 ) ) )
endif
set ZABankgold to ( ZABankGold + interest )
set ZABankInterestEarned to ( ZAbankinterestEarned + interest)
set interestdays to 0
endif
The only thing I wonder about his will the "greater than" part of the script be smart enough to go to the next line, or will I have to absolutely define the parameters like this?
....
elseif ( ZABankgold == 2500 ) && ( ZABankGold < 5000 )
....
(Forgive the lack of tab-over on the script... apparently it doesn't like that sort of thing on this site)