Jump to content

Khaleesi

$250.00 Donor
  • Posts

    26659
  • Joined

  • Last visited

  • Days Won

    209
  • Feedback

    100%

Everything posted by Khaleesi

  1. 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
  2. Upstairs in varrock bank do you mean? and the trading post menu? I'll fix this asap ;) Expect an update later today! Khaleesi
  3. 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
  4. 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!
  5. RS2Interface(parent) and RS2InterfaceChild(child, grandchild) Basicly: A parent is a collection of childs and grandchilds. A child can be a collection of grandchilds
  6. Khaleesi

    Jamez

    I've added you Jamez x3
  7. Still need to see this movie Lucy was an amazing movie! Really loved that 1
  8. 100% my opinion Vene though some hard sex is kinky sometimes But this went a bit over the top for me ^^
  9. 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
  10. What is your code to trigger this piece of code? Since this hasn't any issues in it. Khaleesi
  11. Yes 100 posts required to participate! Goodluck
  12. 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
  13. I don't ahve acces to a slayer ring, if you can provide me some time on an account with a slayer ring acces i can make it Khaleesi
  14. Will be adding this very soon! Expect an update later tonight ;)
  15. but I only have trouble using Osbot classes, errors thrown, npes, glitchy stuff. I also use 5% of what the class has to over and since my Path can handle object and npcs to traverse... I just like to control everything #controlfreak xD
  16. Just make you own path class ... takes 15 min and you can control everything yourself.
  17. You waliking to a position or an entity?
  18. I need to stop drinking xD I also gave you the woodcutting script now ;) Enjoy!
  19. What a moment, Needs some time to process, also try restarting client. If not solved within an hour contact a mod
  20. 07 jan 2015 OP xD only 1 online
  21. Do you mean something like this? Draw method for a shape around the object: g.draw(object.getModel().getArea(object.getGridX(), object.getGridY(), myPlayer().getZ())); If this doesn't answer your question, try to look in the Model class for what you need. Khaleesi
×
×
  • Create New...