Everything posted by NotoriousPP
- I'm the Devil.
-
Programmers - It's true.
At least it's better than the "bug reports" we get from some of our users...
-
All Food Support
Wait.... Stack traces are a bad thing?!
-
nevermind
Take foot. Insert into mouth.
-
stealth my ass and are any gfarmers alive?
You my sir went full retard. Never go full retard.
-
What a time to be alive...
@Timekeeper just remember. Keep on, keeping on!
-
Sleep Paralysis
Nope, just another American. :P
-
Sleep Paralysis
I didn't know this has been observed before, but I did notice the connections between my sleep paralysis along with a few other things by myself, especially after I start becoming interested in spiritual matters. I'm not religious, yet I do have a very strong interest in spiritual theory's, like subjects about higher powers, what happens after death, etc. I can complete understand the connection between them, being as my personal belief is that our dreams is another reality, not just some fake world we create in our head. So I can understand being stuck between both realities, resulting in sleep paralysis. Actually this is completely natural. The ability of using your mind is not against nature. It's expanding your current knowledge of the unknown, which is something we should strive for as a human race.
- Dat Drop!
-
My first attempt at lumberyard lure [santa hat lure :D]
I'm not sure who is mad here. Because I could give two fucks about RuneScape, I'm just here for programming. I simply pointed out your use of imaginary numbers, and horrid vocabulary, that's all.
-
Cleverbot scripts op
That was literally one of the funniest dialogs I have ever read. That kid was trolling the fuck out of that bot.
-
My first attempt at lumberyard lure [santa hat lure :D]
Actually 07 is getting more populated in my opinion. Where are the source of your numbers? Your ass? EDIT: It's spelled "Dying", not DIEING. Dieing means - "To cut, form, or stamp with or as if with a die."
-
Polygon Area
This is what I use for my Polygon areas, it has some extra methods that prove to be useful at times. package tools; import org.osbot.script.rs2.map.Position; import org.osbot.script.rs2.model.Entity; import java.awt.*; /** * Created with IntelliJ IDEA. * User: NotoriousPP * Date: 2/6/14 * Time: 8:53 PM */ public class Area { private Polygon polyArea; public Area(Position... cords){ polyArea = new Polygon(); addPositions(cords); } public Area(int xL, int yL, int xH, int yH){ polyArea = new Polygon(); polyArea.addPoint(xL, yL); polyArea.addPoint(xH, yH); } public boolean contains(Entity e){ return polyArea.contains(e.getX(), e.getY()); } public boolean contains(Position p){ return polyArea.contains(p.getX(), p.getY()); } public Position getCenterTile(){ int lowX = 0, lowY = 0; int highX = 0, highY = 0; for(int i : polyArea.xpoints){ if(lowX == 0 || i < lowX){ lowX = i; } if(highX == 0 || i > highX){ highX = i; } } for(int i : polyArea.ypoints){ if(lowY == 0 || i < lowY){ lowY = i; } if(highY == 0 || i > highY){ highY = i; } } int x = ((highX + lowX)/2), y = ((highY + lowY)/2); return new Position(x,y,0); } public int getLowestX(){ int lowX = 0; for(int i : polyArea.xpoints){ if(lowX == 0 || i < lowX){ lowX = i; } } if(lowX != 0){ return lowX; } return -1; } public int getLowestY(){ int lowY = 0; for(int i : polyArea.ypoints){ if(lowY == 0 || i < lowY){ lowY = i; } } if(lowY != 0){ return lowY; } return -1; } public int getHighestX(){ int highX = 0; for(int i : polyArea.xpoints){ if(highX == 0 || i > highX){ highX = i; } } if(highX != 0){ return highX; } return -1; } public org.osbot.script.rs2.utility.Area getOSArea(){ return new org.osbot.script.rs2.utility.Area(getLowestX(), getLowestY(), getHighestX(), getHighestY()); } public int getHighestY(){ int highY = 0; for(int i : polyArea.ypoints){ if(highY == 0 || i > highY){ highY = i; } } if(highY != 0){ return highY; } return -1; } private void addPositions(Position... positions){ for (Position pos : positions){ polyArea.addPoint(pos.getX(), pos.getY()); } } }
-
3 of my friends
The guy in the middle creeps me the fuck out. That's just me though.
-
Again one bad birthday...
Don't let RuneScape ruin your birthday. Be happy to be alive, because there are a good percent of people who were never able to reach the age, we have been lucky enough to achieve. Be happy to be alive, and that your actually able to lose accounts in RuneScape, because if you weren't here, then you wouldn't have anything to lose. Inner Happiness > Materialistic Happiness
-
Guess what?
I'm more of a Trance/DnB fan, but at live events I'm a hardstyle fiend. I hardjump all around the stage, you can't rage to any other music like you can to hardstyle.
-
Guess what?
Good thing I script! Or that would a bad thing! :p Gets me through college doe!
-
Guess what?
It's my birthday today! If I'm not around a lot today, that's most likely the reason. But I turn 22 today! I'm getting old, it's weird. To bad I gotta wait till the 20th to really go celebrate. By the way, if you rave, and live in southern California, you should go to this: (There will be Hardstyle! ) But, yea! I'm just happy to be alive really, and being lucky enough to live this long!
-
@Prison Pete
This is more of laughing of sorts. It sucks yea, but damn they stacked up and I was in a empty world, I couldn't imagine a highly populated world. Haha
-
@Prison Pete
You be killin them bots! They sat there the entire time, looping pulling the lever.
-
whats your favorite songs rn?
Are you still stuck in last year?
-
whats your favorite songs rn?
I've been listening to this song on repeat for the last 4 days, so I guess you can say its my favorite at the moment.
-
Question about botting?
You have already been caught, and they just waited to implement it; it's called a delayed banned. It happens quite often.
-
Game of Thrones HYPE!
This is what I think of when I hear Game of Thrones...
-
Messed up section
You do not have 100 post yet.