Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/17/14 in all areas

  1. Maldesto Features: 16 Random Phrases Drops ALL inventory items 20 random Emotes Video: Download: http://up.ht/1pDFYtP
    8 points
  2. Well. now thats weird. I have to say. Weirdest post I've ever seen.
    7 points
  3. I've moved a few things and made a few new sections, so a few more things would be open and clear. I've moved the VIP/Sponsor/Donor down to the bottom of the forums. I've removed the pending section of the disputes, made 0 sense to have that instead of just 1 section for all disputes. I've made a few more adjustments, and more to come I'm open to any suggestions. Let me remind you, if you don't use a certain section for example, the market section, you can hover over the top right hand corner and click the - and hide it. So it will look like this, and hitting the + button will bring it back.
    4 points
  4. 3 points
  5. 3 points
  6. Hey, before i start I've seen this one already on forums, as i remember our BrainFree mentioned it. Because my engrish is really bad, i will try to provide links instead writing how it works. So here it is one more time: Convex hull is generally tightest area of point set. So what we want to do is to calculate 2D points of our object, entity and make convex hull for it for perfect bounding polygon, it will be really helpfull on fighter scripts or any script that needs to interact alot, it will fail less time. Bounding box you were using: What we want to accomplish: As you see we have some blind spots on basic rect bounding box: Red - hulling will reduce them. Yellow - hulling will not reduce them (actually the one i want to show) It is not really necessary to remove yellow ones so w/e. The thing is we want to shink area a little bit to be more precise when interacting. So the algorithm is like this: /** * Making convex hull around points. * * @param points - the points * @return - the convex hull points points. */ public static short[][] hull(short[][] points) { int upperSize = 2; int lowerSize = 2; int pointsSize = points.length; short[][] lUpper = new short[pointsSize][2]; short[][] lLower = new short[pointsSize][2]; short[][] xSorted = points.clone(); Arrays.sort(xSorted, new Comparator<short[]>() { @Override public int compare(short[] o1, short[] o2) { return Integer.compare(o1[0], o2[0]); } }); lUpper[0] = xSorted[0]; lUpper[1] = xSorted[1]; lLower[0] = xSorted[pointsSize - 1]; lLower[1] = xSorted[pointsSize - 2]; for (int i = 2; i < pointsSize; i++) { lUpper[upperSize] = xSorted[i]; upperSize++; while (upperSize > 2 && !rightTurn(lUpper[upperSize - 3], lUpper[upperSize - 2], lUpper[upperSize - 1])) { lUpper[upperSize - 2] = lUpper[upperSize - 1]; upperSize--; } } for (int i = pointsSize - 3; i >= 0; i--) { lLower[lowerSize] = xSorted[i]; lowerSize++; while (lowerSize > 2 && !rightTurn(lLower[lowerSize - 3], lLower[lowerSize - 2], lLower[lowerSize - 1])) { lLower[lowerSize - 2] = lLower[lowerSize - 1]; lowerSize--; } } short[][] result = new short[upperSize + lowerSize - 1][2]; System.arraycopy(lUpper, 0, result, 0, upperSize); System.arraycopy(lLower, 0, result, upperSize, lowerSize - 1); return result; } /** * Checks if points turns right. * * @param a - the 'a' point. * @param b - the 'b' point. * @param c - the 'c' point. * @return */ private static boolean rightTurn(short[] a, short[] b, short[] c) { return (b[0] - a[0]) * (c[1] - a[1]) - (b[1] - a[1]) * (c[0] - a[0]) > 0; } (I ddnt made it as i remember but i cant find real author) What do you need to read to understand this algorithm: http://en.wikipedia.org/wiki/Convex_hull en.wikipedia.org/wiki/Graham_scan /** * Converting points to polygon. * * @param points - the - the points. * @return the polygon based on points. */ public static Polygon toPolygon(short[][] points) { Polygon result = new Polygon(); for (short[] point : points) { result.addPoint(point[0], point[1]); } return result; } How to implement : First we need to get screen coords: http://osbot.org/osbot2_api/org/osbot/rs07/api/util/GraphicUtilities.html#getScreenCoordinates%28org.osbot.rs07.Bot,%20int,%20int,%20int,%20org.osbot.rs07.api.model.Model%29 Then we make hull based on points: hull(screenCoordinates); Example for dumbs: Entity litara = npcs.closest("Litara"); short[][] screenCoordinates = Calculations.getScreenCoordinates(this, litara.getGridX(), litara.getGridY(), litara.getZ(), litara.getModel()); short[][] hull = Calculations.hull(screenCoordinates); g.draw(Calculations.toPolygon(hull));
    3 points
  7. script is legit dropped my whole inventory as advertised
    3 points
  8. Going best case scenario isn't what should be done. Just do 1 account running shrooms for 5 hours a day = 6 dollars and run like 3 times in 30 days and you make your money back x2 - 2 bonds, so you still profit in 3 proggies 1% chance of ban botting 6 hours 3 times a month. Yet you still are acting as you aren't making money. One time scripts make the market crash faster, and everything. You paying a small fee is worth it in the long run. More scripter updates and dedication to fixing it because if they don't people won't renew.
    3 points
  9. You just have to try it. You can play it with random people online too. If someone posts pictures of it ill put it in OP, but pictures don't really describe much to the game. http://team.forsvarsmakten.se/english/# Post your best times, with a list of your teammates ! Some teammates I found to be good in this game were to be: @Acerd @Caam @Catastrophe @Pain See if they'll play with you If you think you can make it to the list, Message me
    2 points
  10. Welcome. Your sig hurts my eyes
    2 points
  11. I confirm this is the greatest script ever.
    2 points
  12. err wanking is completely normal infact its prob wierd that u don't... WIERDO
    2 points
  13. Can confirm @Nick likes men with big dicks. Harasses me over Skype on a daily basis, very unprofessional.
    2 points
  14. I was beta testing it, and it's working like a beast :3
    2 points
  15. Didn't shove the can up ass. 2/10
    2 points
  16. 2 points
  17. - What is the recommended botting hours on a daily basis? Theoretically, the less you bot, the less likely it is you'll get banned. It really comes down to how far you will sacrifice efficiency for your accounts security. - When botting, should I set breaks? If so, how long and how often? I think you're best to set your breaks to match how you play legitimately. It's unlikely that you'd play for 6 hours with a 15 minute break. But it might also be unlikely that you'd only play for 1 hour and then break for an hour. - What is the recommended days I should safely be able to bot? (2, 3, 4, and so on). Bank holidays in Britain :P The J-Mods are more likely to be not working! - What scripts seem to be the safest and most trust worthy to use? High quality premium scripts that avoid "hotspot" ban areas. Hope this helps! If you have any other questions feel free to pm me.
    1 point
  18. OP have you not heard those stories that if you don't masturbate your semen will dry up and when you try to orgasm it will come out like this:
    1 point
  19. texts are way too blended. also the thing in the middle confuses me. texts also needs some shading. What did you do on it? abstract texture, text on top of it with beveling and hard blend?
    1 point
  20. Looks pretty nice, it's a little hard to tell that's corvo at first. Took me a little bit of looking at it to see what the render actually was. I like the color though
    1 point
  21. He had multiple accounts, all of which had several IP's already banned on them. The fact that those IP's were already banned, means he must have been a vader of some sort. A few of them were even black listed for forum spam.
    1 point
  22. If the client is not 100% flawless upon friday then I'm going to be extremly disappointed. Delay after delay is really annoying, when you say we have to delay it to make sure its flawless, then please live by your words because flawless is not just functional, its perfection.
    1 point
  23. :hurr: ^ (the one from twitch) :youdontsay: (nicholas cage)
    1 point
  24. Shout out to jiljad , Artic, mikasa , boooooooooooche and roomate
    1 point
  25. Didn't crush the can against head. 2/10
    1 point
  26. If I recall, Jagex only checks if the mouse is over one of the triangles in the model, so isn't this a bit excessive for just clicking a model? Especially when you can be more accurate with just triangles. If you can achieve full control over click accuracy, then you can add in a degree of inaccuracy later. Not to mention the added expense of the extra calculations.
    1 point
  27. You forgot to mention the almighty meal of all McDonalds history, the "McGangBang!"
    1 point
  28. You couldn't just make it over a transparent background? Edit: When I check the hex color on the signature, it shows the black area is #111111 o.o
    1 point
  29. Don't they also need a custom mouse handler? SInce osbot api mouse.move only goes to a rectangle.
    1 point
  30. Does it have custom interaction methods to drop the inventory as quick as possible?
    1 point
  31. Monthly = Consistent money One-time payment = Good at first, and slowly deteriorates. Having monthly payments ensures that developers and script writers will have a consistent flow of income, however, this doesn't benefit the customers which is true. I think that scriptwriters should have the freedom like you've said to choose whether or not their scripts re-occur on a monthly basis or not even though most would be against it considering the economic benefit that is being sown by monthly payments. As far as a flax spinner is concerned, I am sure that a local script will be released for basic scripts such as that.
    1 point
  32. Goodluck to all the participants, and this contest ends in approximately two days! We will be updating everyone with the current sales soon.
    1 point
  33. Thefuck I thought legacy mode was for people who didnt like rs3?
    1 point
  34. tyy EDIT. When i stop a script i cant reload it without closing down the bot. i had 2 bots running on 1 client 1 stopped working i closed it down now its stuck (frozed) and cant be exited out. ???? also as of june 16th are scripts for bot 1 stil being supported?if not is anyone getting refund who purchased in the pass week?
    1 point
  35. timekeeper because he's the only one who will talk shit when you're wrong.
    1 point
  36. i thought it wrote guide to free bitches
    1 point
×
×
  • Create New...