Jump to content

Khaleesi

$250.00 Donor
  • Posts

    26267
  • Joined

  • Last visited

  • Days Won

    203
  • Feedback

    100%

Everything posted by Khaleesi

  1. Indeed Just get eclipse or intelliJ ... way faster ^^
  2. 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
  3. Go get eclipse or intelliJ please, Will spare you a lot of time! What mysteryy said
  4. Ya I see Just meant something else but can't really explain what -_- haha but you are right! ^^
  5. 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!
  6. Welcome to the club Ya bann rates are high at this point
  7. Can you list your top 5 ? So I know what to watch now ^^ Already did Game of thrones, Lost and Breaking bad
  8. Thats a nice list you already watched xD have no idea what left
  9. Haha , isn't too hard after all! Goodluck programming!
  10. 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
  11. Just bot at places where less people are = less reports Also don't bot for too long ^^ Goodluck!
  12. 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!
  13. 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
  14. 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
  15. Ya also don't bot very long at once :p
  16. 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 -_-
  17. 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.
  18. haha xD i've seen multiple pll geting banned bcs orion client xD
  19. 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
×
×
  • Create New...