Jump to content

Khaleesi

$250.00 Donor
  • Posts

    27462
  • Joined

  • Last visited

  • Days Won

    222
  • Feedback

    100%

Everything posted by Khaleesi

  1. Khal Herblore (All In One) updated to V1.42: - Added Bastion and battlemage potion - Added Divine potion upgrading Will be live soon Enjoy
  2. Have fun!
  3. Enjoy!
  4. have fun!
  5. releasing beta this week
  6. Enjoy!
  7. Enjoy!
  8. Won't work properly on mirror mode, for some reason it does not load the nests model correctly
  9. Well it's not how it should be, but it's not going to increase bann rates I will take a look at it and see if I can add something
  10. Enjoy!
  11. Just download the osbot client on top of this page and you can start the script in the client
  12. Enjoy the trial!
  13. Have fun!
  14. Ya but the account logs back in after that right? or what does it matter? Enjoy
  15. Not sure what you are trying to do with this code, but you are trying to draw the display on top of your player This draws the outline of a model Same works for Npc,'s or whatever you are trying to draw. public void onPaint(Graphics2D g){ RS2Object object = .... if(object != null && object.isVisible()){ g.draw(object.getModel().getArea(object.getGridX(), object.getGridY(), object.getZ())); } } Retrieving a object in the onPaint method isn't a great example though, because this will result in FPS drops. The more things you load in the onPaint the harder your FPS drops the best thing is to set the object inside the onLoop RS2Object object; public int onLoop(){ object = ...; } public void onPaint(Graphics2D g){ if(object != null && object.isVisible()){ g.draw(object.getModel().getArea(object.getGridX(), object.getGridY(), object.getZ())); } }
  16. It should have stopped, there is a check for that in the script. So not sure what went wrong tbh ... will take a look!
  17. no trials on this script
  18. No idea, resetted it for you
  19. Have fun!
×
×
  • Create New...