Jump to content

Joseph

Trade With Caution
  • Posts

    4692
  • Joined

  • Last visited

  • Feedback

    91.3%

Everything posted by Joseph

  1. i like it, and i dont mind waiting. Lets just see what happens :p
  2. im requesting a paint for my Construction script, im looking for a chatbox size paint.
  3. String status; switch(getState()){ case ATTACK: status = "Attack"; break; } why dont you simply do this. It isnt that hard. Then simply draw status
  4. Just do it the way notoriousP said. I do that in my script all the time. Works great
  5. Joseph

    Timezone Fix.

    so quick thanks
  6. Joseph

    Timezone Fix.

    Could you fix mine I'm eastern time zone
  7. thanks :p just gotta learn
  8. i have an Enum i would like to add into my gui combo box. im to lazy to retype them in a array string. i also no if i do this JComboBox<CraftingTable> craftingTableList = new JComboBox(CraftingTable.values()); i will get all my variable in my Enum in the combo box but the only problem is that they all in caps with and underscore and that looks unprofessional. i also no that you could add JComboBox<String> craftingTableList = new JComboBox(arrayString); and they will be in an the combo box. So i thought maybe if i create a String array method with the names of the Enum i could easly add them in my gui. my Method: public static String[] getAll() { List<String> list = new ArrayList<String>(); for (CraftingTable c: values()) if (c!=null) list.add(c.getName()); return (String[]) list.toArray(); } //in my enum this.name = super.name().charAt(0) + super.name().substring(1).toLowerCase().replace("_", " "); my gui: JComboBox<String> craftingTableList = new JComboBox(CraftingTable.getAll()); but it doesnt show anything in my gui. Any way i could do what i want.
  9. without having to use the current mouse position you could have created a rectangle. RectangleDestination supports rectangle argument.
  10. ill work all night to try to find a solution if i cant. ill tell you what it is tomorrow, and see if you could help. Also this script hasnt been made on osb yet
  11. So what you could steal my idea Heres a little hint initially i was think about this, but i was just wondering what the OSD would do.
  12. im asking what would you do. if you did something to an RS2Object, and your looking for a change on the RS2Object, but there isnt any. You want to be able to indicate that change so you could chnage the current state of your script.
  13. its hard to explain without blurting out my new project. i would like 2 conditions. One that indicates if the entity has ores.
  14. im just wondering, when your creating a script and there isnt any variable on an entity that will indicate a change. Which i wish there was for my script. Which would help me change my States. What would you normally do. Use a boolean?
  15. just for number two if you right click the setting icon you uncheck mouse debug it removes mouse trail
  16. I was like 13-15 not too sure but I'm 19 right now. After knowing how to wake up from it. It isn't as bad anymore.
  17. Shit I use to get them and they would be really bad experience. I remember the first time I got it, I had a heavy blanket over me, the air conditioner off. So I was sweating hot, I couldn't move, I tried to yell, move, and do anything but I couldn't. But I could see everything around me. I believe my sister was walking near me, I saw her, I was calling her name but nothing. I was about to start crying, I was that scared, please not that was my first time. Another time when I got sleep paralysis, the first though in my head was "NOOOO, Not this shit again". The second after, I had some dark shaded figure rush to me, stared in my eye (like it was looking at my soul lol). Then started to push me down. That shit was pain fool. It felt like I was being squashed. After that happened, I started to do some research because I was scared, I didn't know what was happening. I was a bit happy when I found out that I wasn't the only person who had these same sleep paralysis experiences. They said that, most of the experience that happens to you, all come from your imagination. They said if you keep calm it isn't as bad. So now when I get them I'm just chilling. I also read some nice techniques on how to wake up. What I do is just wiggle my toes until I wake up.
  18. Wondering why the prayer class only supports prayer button only?
  19. I like the way the API is looking thanks for the release I will be working on it soon
  20. What does it log? Edit: please start getting use to using a list. List<Position> tree = new ArrayList<Position>();
  21. client.getCurrentRegion.getObjectAtLocal(int id, int localX, int localY, int height):
  22. If you have to question it then you know it's true. Osbot is safe
×
×
  • Create New...