Thread: Find string Id

Results 1 to 4 of 4
  1. #1 Find string Id 
    Registered Member
    Sirloin's Avatar
    Join Date
    Feb 2012
    Age
    27
    Posts
    782
    Thanks given
    186
    Thanks received
    175
    Rep Power
    105
    Is there a command that displays the string Id's in the interface for a 562 server?
    I saw this picture that displayed the string Id's in the place of the text and I thought it was awesome, is there a command for 562 that will work like this?
    Reply With Quote  
     

  2. #2  
    Ambience 639

    Join Date
    Dec 2009
    Posts
    191
    Thanks given
    30
    Thanks received
    17
    Rep Power
    9
    You would use a loop statement to set the string each time it increases and you would make it display the interface in a method containing the loop statement.
    Reply With Quote  
     

  3. #3  
    Registered Member

    Join Date
    Jul 2011
    Posts
    698
    Thanks given
    191
    Thanks received
    125
    Rep Power
    184
    Yes there is a command that does this, here is one that works with 508/525's. Just needs a little converting to work on 562: http://www.rune-server.org/runescape...out-rsbot.html
    Reply With Quote  
     

  4. #4  
    Registered Member
    Sirloin's Avatar
    Join Date
    Feb 2012
    Age
    27
    Posts
    782
    Thanks given
    186
    Thanks received
    175
    Rep Power
    105
    Well, I found this command and decided to use it...
    Code:
    if(cmd[0].equalsIgnoreCase("findstrings")) {
    	if(cmd.length == 1) {
    		int inter = Integer.valueOf(cmd[1]);
    		for (int i = 0; i < 100; i++)
    		sendString("Id"+i, inter, i);
    	}
    }
    But I keep getting this error...
    Code:
    Compiling server...
    src\com\rs2hd\packethandler\CommandPacketHandler.java:2073: cannot find symbol
    symbol  : method sendString(java.lang.String,int,int)
    location: class com.rs2hd.packethandler.CommandPacketHandler
                    sendString("Id"+i, inter, i);
                    ^
    1 error
    Press any key to continue . . .
    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. Find String Id on any Interface
    By Russian in forum Snippets
    Replies: 10
    Last Post: 08-08-2011, 07:35 PM
  2. String Help
    By Slawth Baws in forum Help
    Replies: 0
    Last Post: 08-05-2011, 10:27 PM
  3. [Java] String.contains(String)
    By Shoes in forum Application Development
    Replies: 9
    Last Post: 10-26-2010, 01:13 AM
  4. string
    By Leanbow in forum Requests
    Replies: 1
    Last Post: 11-16-2009, 08:26 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •