Jump to content

Khaleesi

$250.00 Donor
  • Posts

    26925
  • Joined

  • Last visited

  • Days Won

    213
  • Feedback

    100%

Everything posted by Khaleesi

  1. Ya thx for the data! I'm sure people would like that! And ofcourse enums makes the code more readable afterwards But an Array works too!
  2. Welcome to the club Ya bann rates are high at this point
  3. Can you list your top 5 ? So I know what to watch now ^^ Already did Game of thrones, Lost and Breaking bad
  4. Thats a nice list you already watched xD have no idea what left
  5. Haha , isn't too hard after all! Goodluck programming!
  6. Did the method you used print out anything at all? try to use Mousereleased or Mousepressed instead Try this: public void mousePressed(MouseEvent e) { Point clicked = e.getPoint();; Rectangle paintButton = new Rectangle(475, 350, 19, 18); if (paintButton.contains(clicked)) showPaint = !showPaint; } This just reverses the ShowPaint boolean. in the onPaint method in you do the folowing: public void onPaint(Graphics2D g){ if(showPaint){ //draw your paint }else{ //draw a "X" or image so pll know where to click again on unhide it the paint } } PS: try the folow java conventions, they will make it easier to read for other people ^^ A variable starts with a "lowerCase" letter. You can always pm me on skype when you got more questions! Khaleesi
  7. Just bot at places where less people are = less reports Also don't bot for too long ^^ Goodluck!
  8. Yes you can pass it in the constructor Like this: public class AlKharidKiller { private Script script; public AlKharidKiller(Script script){ this.script = script; } Goodluck If you got anymore question you can always add me on skype!
  9. RS2Object object = objects.closest(); NPC npc = npcs.closest(); same for the other objects If you want to get those in another class you'll have to pass the Script object
  10. I have this issue too today Never had this before. Every othe rpage I load is quick except Sometimes takes 4-10 sec to post a message or load a page
  11. Ya also don't bot very long at once :p
  12. Good job Laz, Ya i've seen it too. Sometimes they just make an NPC invisble after an random, which makes the mouse hovering over the model of the npc. They get smarter by the day -_-
  13. nobody said you can't use I just said you should try to avoid them because then can mess a script ahrd if you do it wrong. Instead use the onLoop better In the last 15 scripts I made I never used 1 while loop xD no fan of them at all =D Guess that is everyone else thought and the way of programming I guess ^^ Programming is like a signature of someone, they will all be different.
  14. haha xD i've seen multiple pll geting banned bcs orion client xD
  15. Ya there is not much needed at the start I think you only need the crafting level to make some lamp to help the pirates
  16. Let me know what script you are looking for
  17. Hello, I have several request of logo's which need to be made. I'm willing to give out several script auth for some1 who wants to help me out on this. If your interested to get some free acces to some of my prem scripts and you want to make some gfx. Feel free to hit me up on skype (in signature) ! Khaleesi!
  18. would be epic bad luck ... Maybe jagex made something you can't get randoms 5-10 min after you died? ;)
  19. You should try to avoid using booleans, try to check Also NEVER EVER try to use while loops in scripts.(Except when using some Timer to prevent while loops geting stuck) While loops are doomed to mess your script, instead use for loops or make better use of the onLoop method. You can always add me on skype and i'll take a look at your script on how to solve your issue. Skype is in my sigg
  20. Ya you could use the modelID's ... just check out the different options What ores are u trying to mine?
  21. Do you also make logo's? add me on skype ;)
×
×
  • Create New...