Jump to content

Eagle Scripts

Lifetime Sponsor
  • Posts

    7229
  • Joined

  • Last visited

  • Days Won

    12
  • Feedback

    100%

Everything posted by Eagle Scripts

  1. firstly, determine the current widget you want to interact with. This being your Close button. do this like this --> RS2Widget closebutton = getWidgets().get(firstchild, secondchild); to get your firstchild and secondchild, use the widgetdebugger in the client and hover over the close button then, once you've determined your widget, check if your widget is there/is visible. do this like this --> if (closebutton != null && closebutton.isVisible()){ } now, you need to tell it to interact with that widget and its current available actions This would be like this i guess, i'm not if its exactly "Close" so please check it yourself --> closebutton.interact("Close"); Your final piece of code would be --> RS2Widget closebutton = getWidgets().get(firstchild, secondchild); if (closebutton != null && closebutton.isVisible()){ closebutton.interact("Close"); }
  2. Yes you can buddy, Shrimp/Anchovies/Tuna/Swordfish/Lobster is all you can fish at Karamja (: If you want a trial, let me know
  3. 30 Seconds to mars have some awesome songs (:
  4. Nice man. Congratulations on reaching your goal (:
  5. authed, sorry missed your message. I'm currently not aware of any bugs. Could you please give me some more in depth detail about this matter in PM? (logs, screenshot)
  6. Look at what Acerd posted, this is for you to help with opening the bank. To let it walk to the bank, you need to check if your inventory is full and your player is not in the bank area. If the player is not in the bank area --> walking.webwalk(BANK_AREA): If the player is in the bank area --> Execute bank code
  7. Try to indeed use a different autotyper
  8. Also encountered this problem with my Construction script. Mirror client struggles to search for strings in widgets/dialogues. To fix this you should make it interact with the number of the sentence. lets say you need to have the barbarian outpost string, this would be the 2nd option of 3 available. This would have you do --> dialogues.selectOption(2); This worked for me, should use this untill this gets fixed.
  9. Send me both your skype names so I can see it for myself (:
  10. Check the date buddy, he's probably not even active anymore
  11. This is a Fisher for Karamja.
  12. Error: to many connections? Have had this recently too.
  13. Could for instance go with trinitys hillgiant script. I'm quite sure it supports banking, check it out.
  14. Quite unexpected you say? Hhm.. might aswell re-look at your end-products, they're amazing! Make it's background full transparent though, all apart from that Good Job (:
  15. Looks good! I'm actually thinking that the dimensions for script logos are 180x180, correct me if i'm wrong.
×
×
  • Create New...