Everything posted by Joseph
- Timezone Fix.
-
Bitter needs scripting suggestions.
What spell book?
-
Timezone Fix.
Could you fix mine I'm eastern time zone
-
gui question
thanks :p just gotta learn
-
gui question
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.
-
Mouse click OSBot v2
without having to use the current mouse position you could have created a rectangle. RectangleDestination supports rectangle argument.
-
Chaos Elemental Pet
i have enough post count, i could care less. i just want a choas pet
-
Chaos Elemental Pet
pm me the secret i want one please
-
Question for the experiences scripter
nope
-
Question for the experiences scripter
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
-
Question for the experiences scripter
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.
-
Question for the experiences scripter
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.
-
Question for the experiences scripter
its hard to explain without blurting out my new project. i would like 2 conditions. One that indicates if the entity has ores.
-
Question for the experiences scripter
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?
-
OSBot 2.0.16 BETA! (First PUBLIC release)
just for number two if you right click the setting icon you uncheck mouse debug it removes mouse trail
-
Sleep Paralysis
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.
-
Sleep Paralysis
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.
-
OSBot 2.0.16 BETA! (First PUBLIC release)
Check the mouse class
-
OSBot 2.0.16 BETA! (First PUBLIC release)
Wondering why the prayer class only supports prayer button only?
-
OSBot 2.0.16 BETA! (First PUBLIC release)
I like the way the API is looking thanks for the release I will be working on it soon
-
Issue on method
What does it log? Edit: please start getting use to using a list. List<Position> tree = new ArrayList<Position>();
-
It was my understanding that everyone had heard
April fools
-
Using Object Problem
client.getCurrentRegion.getObjectAtLocal(int id, int localX, int localY, int height):
-
Keylogger
If you have to question it then you know it's true. Osbot is safe
-
Dropping All Except
oh well i havent used it so i dont know. So i just decided to create my own. It only took me like a min to type it up.