Jump to content

Jusple

Members
  • Posts

    3
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Jusple

  1. Title says it all,

     

    Script interacts with furnace, chooses a bar and types a random number.

     

    My question is, is there a specific way to stop that loop and continue after its done? or do I have to make some kind of timer.

     

    cheers.

  2. if(SMELT_AREA.contains(myPlayer())){

        Entity x = objects.closest("Furnace");

        RS2Interface clickArea = interfaces.get(311);

        if(x != null) {

        if(x.interact(smelt)){

        if(clickArea != null){

        RS2InterfaceChild boronze = clickArea.getChild(4);

        if(boronze != null){

        sleep(600);

        boronze.interact("Smelt X");

        }

       

       

       

        }

        }

        }

        }

     

     

    It will hover over bronze bar, doing nothing.

×
×
  • Create New...