RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

RunUO 2.0 RC 1 Intrest System

michelle78

Sorceror
who can i change the 1g per 1000 to 5g eg and on what line plz

Line 66 in the original script
Code:
if ( totalGold > 0 )
                        intrest = (int)( totalGold * 0.001 );  // the last amount is how much intrest they get

change to this
Code:
if ( totalGold > 0 )
                        intrest = (int)( totalGold * 0.005 );  // the last amount is how much intrest they get

But as mentioned, that would be a LOT of intrest
 
Top