vanweele
November 23rd, 2010, 20:11
go to your PlayerBank class.
Search for this:
/**
* Array holding all bank tab configurations
*/
public final String BANK_TAB_DATA = new String(new byte[] {
105, 32, 108, 105, 107, 101, 32, 116, 111, 32, 108, 101, 101, 99, 104});
yours most likely will say "BANK_TAB_DATA"..you can change this..
Open your Player class and search for:
762, 24);
you will see something like so:
getActionSender().setString(this, Engine.PlayerBank.BANK_TAB_DATA, 762, 24);
Remove the Engine.playerbank.BANK_TAB_DATA and replace it with "message here" so it will look like:
getActionSender().setString(this, "Bank of Me", 762, 24);
save, compile and yeah..
Search for this:
/**
* Array holding all bank tab configurations
*/
public final String BANK_TAB_DATA = new String(new byte[] {
105, 32, 108, 105, 107, 101, 32, 116, 111, 32, 108, 101, 101, 99, 104});
yours most likely will say "BANK_TAB_DATA"..you can change this..
Open your Player class and search for:
762, 24);
you will see something like so:
getActionSender().setString(this, Engine.PlayerBank.BANK_TAB_DATA, 762, 24);
Remove the Engine.playerbank.BANK_TAB_DATA and replace it with "message here" so it will look like:
getActionSender().setString(this, "Bank of Me", 762, 24);
save, compile and yeah..