Jump to content

Khaleesi

$250.00 Donor
  • Posts

    26925
  • Joined

  • Last visited

  • Days Won

    213
  • Feedback

    100%

Everything posted by Khaleesi

  1. Welcome! Veel plezier! #Teambelguim
  2. Khaleesi

    Oliver v2

    Not sure if i Like the signature or the photo haha xD 11/10 would bang !
  3. Ya it does, Even though teleport is a bit bugged since last runescape update. I'll have this updated later today
  4. Osbot was oficially started and recognized as a bussiness?
  5. Khaleesi

    1-99 Mining guide

    Motherlode is a nice way of making money and Exp
  6. Ya winrar wants to extract it but it's acutally a runnable Jar file
  7. You don't have to extract the osbot client ... -_- You have to run it by java. Update your java
  8. No smart to leave your IGn here Since jagex can monitor these forum and bann you right away xD be carefull !
  9. Holy: Still increasing rapidly! GOGO Osbot!
  10. OK cool, Will update this asap
  11. Welcome my friend! Have fun botting ;) Make me some good food? x3
  12. Hey, Good to see you like it. I'll check what I can do for the camera movements. I'll get the teleport fixed today, You can expect an update later today Will try to make it the best! ;) Khaleesi
  13. Upstairs in varrock bank do you mean? and the trading post menu? I'll fix this asap ;) Expect an update later today! Khaleesi
  14. Just testing if it exists ... could be that the child could nto be loaded and returned null. Then a npe would be thrown if you try to interact. It's smart to always null check an object, npc, ... before trying to interact with them. This will stop your script from jamming
  15. Basicly you can do: (Just a quick example) RS2Interface parent = script.interfaces.get(582); if(parent != null){ RS2InterfaceChild child = parent.getChild(4); if(child != null) child.interact("Make 10"); } You only have to get the right ID's fromt the furnance text in chatbox You can use the interface debugger for that!
  16. RS2Interface(parent) and RS2InterfaceChild(child, grandchild) Basicly: A parent is a collection of childs and grandchilds. A child can be a collection of grandchilds
  17. Khaleesi

    Jamez

    I've added you Jamez x3
  18. Still need to see this movie Lucy was an amazing movie! Really loved that 1
  19. 100% my opinion Vene though some hard sex is kinky sometimes But this went a bit over the top for me ^^
  20. add -> !cow.isUnderAttack() You should be useing a Filter instead, this code willc ause the script to pause it the closest cow in underattack. use this: NPC cow = script.npcs.closest(new Filter<NPC>() { @Override public boolean match(NPC npc) { return npc != null && (npc.getName().equals("Cow") || pc.getName().equals("Cow calf")) && !npc.isUnderAttack() && npc.getHealth() > 0; } }); You could also check death animation from the cow are check if the cow is over 0 health so it prevents clicking deaths cows. Goodluck
  21. What is your code to trigger this piece of code? Since this hasn't any issues in it. Khaleesi
  22. Yes 100 posts required to participate! Goodluck
  23. Wrong proggie in the post? That what you meant? Script has been updated to V0.03: - Fixed a bug where people get stuck updatirs at seers bank. - Improved solme walking
×
×
  • Create New...