Everything posted by Swizzbeat
-
Destiny Beta Code (PS4) Contest
Womens rights.
-
Smoking Rock Detection
Unless they updated it recently nope.
-
Smoking Rock Detection
Nope. Literally nothing changes about the object besides the height and ID which is why there's so many people asking about smoking rock detection :p
-
Standardised spawn rates - what do you think?
More resources.
-
What happened to Arctic?
Considering I'm one of two scripters out of what, 25, that has a free script I'll take that as a compliment.
-
What are you currently downloading ? [post your torrents, etc]
Redhead porn.
-
What happened to Arctic?
He really didn't do anything besides use his position to be more active in the market.
-
Anyone know Python? What text editer can I use for it?
Programming is "inserting bloody commands everywhere"... A text editor is essentially notepad with color coded text based on the file type you are working with. A few of them also include some sort of basic intellisense. An IDE on the other hand is like an AIO programming environment where you have (more than often) language compilers, intellisense, plugins, etc.
-
Anyone know Python? What text editer can I use for it?
Why would you ever want a text editor over an IDE? Also, the C(whatever) languages won't get you used to machine level....learn assembly for that.
-
Need help for user input into a script.
http://docs.oracle.com/javase/tutorial/uiswing/start/index.html
-
@Script Writers - Free paints.
That looks great! If you could that would be amazing, thanks Would you mind PM'ing me them when you're finished?
-
@Script Writers - Free paints.
Browse the store and make some script logos for me please
-
I b trippin
http://www.rune-server.org/runescape-development/rs-503-client-server/informative-threads/227122-landscape-files.html
-
I b trippin
No, you can just retrieve cached data from somewhere and use that. It's not resource intensive to find a path if you pre-flag all the nodes. The data you need is already cached on your computer anyway, hence why @PolishCivil could make things like this: I should point out that the above would be used for web walking, and not pathfinding along every single tile based on collision data.
- I b trippin
-
I b trippin
The only thing this data does is allow you to find a path/position in your current region.
-
I b trippin
Well with web walking you wouldn't need map data as all the nodes are predefined with their own edges. This would be more of a global pathfinder to construct a path from point A to B using (obviously) the collision flags.
- I b trippin
-
Can you be hacked by java based scripts if you don't have java installed on your computer?
Is this serious?
-
Thoughts?
I have had over 3 times that on just one of my OSB1 scripts. The beautiful thing was, they didn't have to build a script each time they wanted to bot.
- Thoughts?
-
Keyboard
The Robot class generates native events, so even if it did work you wouldn't want to be using it. The reason you're not seeing anything happen is because I guarantee that you have user input disabled. Every native event sent to the applet is first checked by the bot itself and only allowed through if user input is enabled, else it will just be consumed. Look at the BotKeyEvent class in the API, you should be sending those.
-
Keyboard
You could send events manually.
-
OG OSBot Members remember...
Welcome to OSBot
-
I can't get OSBot to print the name of this interface. Any help?
If you're making a quester use VARPS. If not you need to grab the interface child and call the #getMessage() method.