Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • Convert [L]java.lang.String


    abdulr

    Recommended Posts

    How do i convert [L]java.lang.String;@numbers to a valid output string

    GameObject random = getClosests("sadasdsad")

    then im trying to log the actions -> log(random.hasActions);

     

    but its coming in the java.lang format how do i convert it to normal strings

    Link to comment
    Share on other sites

    Just make a method that iterates through the object's actions.

    void outputActions(GameObject obj) {
    	String actions[] = obj.getActions();
      	
      	for(String action : actions) {
             log(action);
        }
    }

    It should be something like that ^

    Link to comment
    Share on other sites

    Archived

    This topic is now archived and is closed to further replies.

    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.