Everything posted by Bobrocket
-
Real-Life RuneScape? Man gets arrested for cutting yew logs
Thanks! I've written about 4 other "articles" of stupid shit that I come up with off the top of my head. I think I'm beginning to grasp the basics for writing satirical articles like The Onion or ClickHole
-
Real-Life RuneScape? Man gets arrested for cutting yew logs
Get out normie reeeeeeeeeeeeeee :^)
-
Real-Life RuneScape? Man gets arrested for cutting yew logs
Thanks guys! I already have a few more articles written, and I am in the process of writing more. They will be queued daily so I don't post them all at once :p
-
Cortana
If you reserved your upgrade beforehand, yes. Otherwise I don't think so.
-
Real-Life RuneScape? Man gets arrested for cutting yew logs
Thanks! I have a few posts lined up so you should definitely follow the blog ;) I draw my inspiration from sites like The Onion and ClickHole as you might be able to tell :p
-
Real-Life RuneScape? Man gets arrested for cutting yew logs
FALADOR, GILENIOR – After a restless turn of events, twenty-three year old Stephen Collins was arrested by local authorities after embedding an axe inside a one-hundred year old yew tree. Citing his previous activity, Collins states how he “did not macro”, and that this was a “mistake by Jagex”. Authorities believe that Collins had committed the crime after spending a twenty-four hour binge session on popular MMORPG RuneScape, at which point his power was cut. Forensics have reported that a trail of Doritos and four two-litre bottles of urine were found in Collins’ household. Collins, who referred to himself as StephenMan48, told The Daily Bee that he had “reported twelve bots and nothing happened”. It was later revealed that Collins was referring to bystanders who attempted to stop him. Collins has gone on record saying that the local authorities are “noobs” and urged to be “unbanned”. Collins is currently awaiting trial for one charge of public indecency, and one charge of tree felling. He may be facing up to six months community service, and his trial will be held sometime in September. (Source) I recently started this satirical "news" blog and will soon expand to a website. I enjoy writing, however I usually write creative literature (which may be why the style is inconsistent or the grammar a bit repetitive). Always looking for opinions or stuff to write about
-
Cortana
Enable voice chat, and (with voice) say "What does the fox say?" I found the response pretty funny. I've also had varying success with getting Cortana to load programs "Hey, Cortana, run <app name>", seems to work for some but not for all of them
-
Well, that's my bond sorted..
It's quite alright. Jagex removed noted addy bars from regular god wars dungeon because of bots, so we simply create bots for the wilderness one ;)
-
Well, that's my bond sorted..
Non-wild doesn't have noted addy bars, so the gp would be like 40k/hr :p
-
Well, that's my bond sorted..
Boostable, so 48 strength + super strength pot boosts you up to 60 temporarily I've been doing this method from very low stats, so I know how little requirements are needed for this.
-
Well, that's my bond sorted..
This is the wilderness god wars, so it's quite risky. I need a lot of anti-pk to make sure people don't die :p
-
Well, that's my bond sorted..
Aviansies, note the "OmniAviansies" in the right Close guess though, although I think lava dragons would be less cash? EDIT: (responding to your edit), I calculated some stats, minimum stats includes 28 ranged and 48 strength. Can be done on a 1 def pure (although risky), or done very well @ 40 defence.
-
Well, that's my bond sorted..
Testing phase won't be for a while, maybe a month or 2, want to make sure it's working like a well-oiled machine before I let other people touch my baby ;)
-
Well, that's my bond sorted..
Luckily I didn't get pk'd, especially considering there is no anti-pk yet Still have to test other transportation methods and clean up the binary map before I add the other features though
-
Funniest email conversations
You should really consider giving credit to David Thorne (http://www.27bslash6.com/) OP, since he has so many more brilliant conversations like those.
-
Basic JFrame animations
Some interesting debug information for the sliding animations: The red "circles" indicate where I clicked the "animate" button, which would perform the animation. In short, it uses copious amounts of CPU. Why? Currently, we use BufferedImage#getSubImage(x, y, width, height) to create each frame and then Graphics#drawImage(BufferedImage, x, y, ImageObserver) to draw it. Now, in a form of width 480, you're going to be creating 480 frames. This is obviously not going to be very CPU friendly. The solution, I hear you begging for, is (somewhat) simple: reduce the frames, and make the thread sleep a little bit. Now, this still uses a fair amount of CPU, however it does not use as much (and for as long)! By utilising both frame reduction and thread sleeping, I can achieve the same smooth transition while keeping the CPU down a little bit. You can see here that the CPU spikes a lot less (we hit 100% consumption by spam clicking the animate button, whereas we top 40% now by spam clicking) There's also practically no difference in the speed too: Another thing to mention for this animation library is that you can chain effects (I can put an alpha/colour effect on a panel as well as have it pull left/right)
-
Quality of Life
The idea OP is trying to get across is that special keys (try pressing TAB when logging in manually via mirror client) or scrolling the mouse are not passed through the reflected client to the original client. Pressing TAB will just focus on the logger (if visible)
-
Basic JFrame animations
I may port some of my .NET themes over to Java, we'll see ;)
-
Runescape 07 NEW SKILL CONFIRMED!
To help achieve all of this, we will soon be starting the search for two developers to join us on the Old School team. Time to apply
-
Basic JFrame animations
Thanks! Having frames like this not only allows for less confusion by the end user (eg "where is the rest of the info?"), it also ensures that users actually fill out everything and simplifies everything (meaning the user is not overwhelmed at first sight) Working on color/"alpha" animations right now. Will post back soon.
-
Basic JFrame animations
Whatever helps you sleep at night They will be there should someone want to use them. Instead of drawing transparent colours, I could manually lerp each pixel by x%. That might take less CPU, albeit with different results.
-
Basic JFrame animations
I'm looking into making some simple JFrame animations: Going to make a few, make sure it's all nice and polished and clean and then release it on Github. Goals: Pulling/sliding in all directions (done left & right, have to do up & down now) Alpha-based animations (fading in/out) Size-based animations (shrinking/expanding) Color-based animations (switching from color x to color y) All of this will be based on JFrames, and I am originally building this for my GUIs. "Alpha" animation: This actually uses linear interpolation (10% decrease each time) instead of actual transparency as this should reduce overall strain on the CPU.
-
OSBot-Framework
Right, I see. Thanks for explaining
-
✛ Malevolant ☛ Account Shop ☚ CHEAP & SECURE ✛ STARTER MAINS / PURES / SKILLERS
I'll start the bidding off on Account #1 for 1M; my Skype is on my user profile
-
OSBot-Framework
There would be no fighting over control as this is all ran synchronously. I mean I could understand if it was separate threads but this is all synchronous right?