Thread: Search bank, input interface.

Results 1 to 3 of 3
  1. #1 Search bank, input interface. 
    Registered Member Rememberm3's Avatar
    Join Date
    Aug 2013
    Posts
    1,716
    Thanks given
    56
    Thanks received
    108
    Rep Power
    129
    Hello,

    when I search my bank I have to type it in the chat and then press enter, but everyone can see that.
    How can I make it that when you click the search bank button, that you see an input interface, like this:

    Here is some code I found:
    Code:
    if (c.getVariables().isSearching) {
                String text = Misc.textUnpack(c.getChatText(), c.getChatTextSize());
                BankSearch.clearItems(c);
                BankSearch.inputText(c, text);
            }
    Greets xX4m4zingXx
    Attached image
    Reply With Quote  
     

  2. #2  
    ¯\_(ツ)_/¯


    Join Date
    Jul 2014
    Posts
    1,803
    Thanks given
    928
    Thanks received
    550
    Rep Power
    299
    go to ClanChat.java
    that's the class for handling the "enter name" packet
    and modify your code
    Code:
    if (c.getVariables().isSearching) {
                String text = Misc.textUnpack(c.getChatText(), c.getChatTextSize());
                BankSearch.clearItems(c);
                BankSearch.inputText(c, text);
            }
    to check the input.
    Reply With Quote  
     

  3. #3  
    Registered Member Rememberm3's Avatar
    Join Date
    Aug 2013
    Posts
    1,716
    Thanks given
    56
    Thanks received
    108
    Rep Power
    129
    Quote Originally Posted by Berserk View Post
    go to ClanChat.java
    that's the class for handling the "enter name" packet
    and modify your code
    Code:
    if (c.getVariables().isSearching) {
                String text = Misc.textUnpack(c.getChatText(), c.getChatTextSize());
                BankSearch.clearItems(c);
                BankSearch.inputText(c, text);
            }
    to check the input.
    could you please go into it more? I don't understand it.
    Attached image
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Bank pin interface
    By TrustedDealer in forum Show-off
    Replies: 20
    Last Post: 11-03-2011, 08:11 PM
  2. Replies: 2
    Last Post: 10-17-2011, 07:16 AM
  3. Text Input Interface
    By Gargamele in forum Help
    Replies: 4
    Last Post: 08-17-2011, 09:41 PM
  4. [562] Bank Pin Interface String
    By Azurite in forum Help
    Replies: 4
    Last Post: 04-15-2011, 01:19 PM
  5. Bank Pin Interface 50%
    By begonein2min in forum Show-off
    Replies: 10
    Last Post: 06-03-2009, 01:50 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •