BankBells have a huge exploit on the server im building where its not registering the new banking system does anyone have a updated Verison or know where i can get it?
 
with the current way its setup my players are getting additional gold from being rejected by the bankball to withdraw gold/Checks, the number they place like check 100000 will add 100k gold to their bank and say this Ah, art thou trying to fool me? Thou hast not so much gold!
 
I assume it has the method: public override void OnSpeech(SpeechEventArgs e)

Code:
public override void OnSpeech(SpeechEventArgs e)

        {

            HandleSpeech(this, e);



            base.OnSpeech(e);

        }

if you changed it to

Code:
public override void OnSpeech(SpeechEventArgs e)

        {

            Banker.HandleSpeech(this, e);



            base.OnSpeech(e);

        }

then I just uses the same code as the banker and you shouldn't have any more issues
 
Back