Jump to content

Khaleesi

$250.00 Donor
  • Posts

    26376
  • Joined

  • Last visited

  • Days Won

    203
  • Feedback

    100%

Everything posted by Khaleesi

  1. thanks for that! Really appreciate this, Feel free to post some proggies
  2. your opinion xD 70% of the worlds thinks different aha
  3. he bit a player in the schoulder xD That is hes 3 time he does something like that... Who does something like that, when 50 camera's are recording? Just dumb -_- Khaleesi
  4. Indeed Just get eclipse or intelliJ ... way faster ^^
  5. Really? First go to the folder where your .java files are in You can do that by the command cd "mapname/lala/src", then do javac "javafilename".java
  6. Go get eclipse or intelliJ please, Will spare you a lot of time! What mysteryy said
  7. Ya I see Just meant something else but can't really explain what -_- haha but you are right! ^^
  8. 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!
  9. Welcome to the club Ya bann rates are high at this point
  10. Can you list your top 5 ? So I know what to watch now ^^ Already did Game of thrones, Lost and Breaking bad
  11. Thats a nice list you already watched xD have no idea what left
  12. Haha , isn't too hard after all! Goodluck programming!
  13. 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
  14. Just bot at places where less people are = less reports Also don't bot for too long ^^ Goodluck!
  15. 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!
  16. 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
  17. 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
×
×
  • Create New...