Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/04/14 in Posts

  1. v1.7.87 Updated: Prayer configs Added: (hopefully these remain stable) ObjectDefinition: getModifiedModelColors(), getOriginalModelColors() NPCDefinition: getHeadIcon(), getOriginalModelColors(), getModifiedModelColors() ItemDefinition: getUnnotedId(), getModelId(), getNotedId(), getOriginalModelColors(), getModifiedModelColors() Hopefully, hopefully I didn't miss anything.
    5 points
  2. Dude go get laid and stop worrying about petty bullshit.
    5 points
  3. i hate math tests because all throughout the chapter it’s like really easy shit and then you think you’ve got it and then the test is like if i throw a triangle out of a car and the car is going 20 mph and wind resistance is a thing that exists, how many cupcakes can pedro buy with one human soul
    3 points
  4. PM me. I don't release my skype. You are Banned.
    2 points
  5. If you don't want to read about it, DONT CLICK ON THE THREAD. How is that hard? Whats wrong with you kids? Oh, you don't want to see discussions about something you don't partake in? Well thats fine and dandy, but I don't want to see your stupid off-topic threads either. Why don't we go ahead and ban those as well.
    2 points
  6. Member: Jordan Feedback on activity: 6/10 your activity dropped heavily since my last feedback Abusive or Non Abusive?: non What could Jordan improve on?: be more active because you're a great moderator Does Jordan handle situations well?: very well Anything else?: be more active again please (: Member: Mikasa Feedback on activity: 7,5/10 Abusive or Non Abusive?: non What could Mikasa improve on?: do more disputes? I don't know I barely see you doing "the super moderator stuff" but it's probably just me... Does Mikasa handle situations well?: yes Anything else?: no Member: Smart Feedback on activity: 9/10 Abusive or Non Abusive?: non What could Smart improve on?: nothing Does Smart handle situations well?: yes Anything else?: keep up the GREAT work, once you got your spot back you immediatly delivered hard work and you still keep it up. You're a blessing for the staff team! Member: Gilgad Feedback on activity: 7,5/10 Abusive or Non Abusive?: non What could Gilgad improve on?: get a better signature Does Gilgad handle situations well?: 80% of the time yes Anything else?: no Member: Raflesia Feedback on activity: 7/10 doesnt seem active anymore but that's probably because he doesn't post that much, he never does :p Abusive or Non Abusive?: non What could Raflesia improve on?: come out of the dark, be the community person you used to be AND ARE! Does Raflesia handle situations well?: yes Anything else?: do more disputes, that is your kind of thing Member: Natsu Feedback on activity: 8/10 Abusive or Non Abusive?: non What could Natsu improve on?: / Does Natsu handle situations well?: yes Anything else?: just got promoted but you were great before so Member: Arctic Feedback on activity: 7/10 Abusive or Non Abusive?: non What could Arctic improve on?: fairly new Does Arctic handle situations well?: haven't seen him handle a situation Anything else?: / Member: Eliot Feedback on activity: 7,5/10 Abusive or Non Abusive?: non What could Eliot improve on?: / Does Eliot handle situations well?: / Anything else?: no Member: Nick Feedback on activity: 8/10 Abusive or Non Abusive?: non What could Nick improve on?: / Does Nick handle situations well?: / Anything else?: no
    2 points
  7. I like to take risky faps because I'm a horny motherfucker
    2 points
  8. Your Opinions valid as they may be may offend and or are not needed in a public area. Contrary to what you weed smokers might think not EVERYONE does smoke it and not EVERYONE wants to hear/see you talk/type shit about it so maybe just hold off on typing about it in the public chatbox. it is unnecessary and not warranted to do so. weather you like it or not it is actually an illegal substance and should not be condoned in anyway. And "getting laid" has nothing to do with people acting immaturely around the forums, Please just keep it too a low in the chatbox... where it isn't needed at all if you NEED to talk about it add your pot smoking buddies to skype and have a group chat/call just don't go about it in a public area where the rest of us have to see you harp on about crap. Thanks.
    2 points
  9. Love when people classify Weed as a drug. What a fucking joke. But I 100% support.
    2 points
  10. Both ACT and AP offer financial aid. In addition your school will help you as much as possible with this, they receive an incentive for each child taking these tests source: took 12 AP tests and 3 ACTs and SATs now if you like I can link you. EDIT: here it is anyways https://professionals.collegeboard.com/testing/ap/coordinate/fee-assistance http://webapps01.act.org/fane/docs/ As her parents are not supporting her financially she would declare she is INDEPENDENT of them.
    2 points
  11. Now how do we know this money would actually go to her? Last time you copy pasted a free guide from tipit and sold it.
    2 points
  12. I mean you can talk about it, but it isn't danger the community here. Not like they're selling drugs or anything.
    2 points
  13. Speaking about illegal. This site is about botting on a game that doesn't allow botting. It's also about selling accounts on a game that doesn't allow account selling And about trading a games currency for real money, which also, is not legal. Hypocrites.
    2 points
  14. I agree, the chat is constantly filled with people talking about drugs... They think their e-dick gets bigger every time they mention something about it, it gets annoying :p
    2 points
  15. Updated for OSBot 2's API! Hello again everyone! I hope you enjoyed my first tutorial, and I hope you'll enjoy this on as well. All feedback is appreciated, so feel free to post your thoughts! This tutorial will use some of my methods for simple banking and path walking! We’ll expand upon our script we were working on last time, so you'll need the source. Step I: Converting to a Banking Script Now as we all know, this script isn’t only boring, it will keep trying to click the rocks after we mine them, even if that vein isn’t ready! To remedy this, we’ll be searching for the rocks using object IDs instead of names. Since we’ll be using specific IDs, we have to choose what and where we’ll be mining! For this second tutorial, we’ll make a script that mines tin in the mines south-east of Varrock: Finding Object IDs Finding object IDs in OSBot is very simple, stand near the object you want the ID of, press Settings: Then press Advanced Settings: Then finally press Object Info: This will lag your client a lot, but don’t worry, you can shut it off as soon as you get the IDs. To get the ID, just look for the number near/on the object you’re looking for: Note: Some objects and NPCs in Runescape have deviations of themselves (like tin), so the same object/NPC may have different IDs (make sure to get all the IDs of whatever you’re using). Now that we have tin’s ID, we’ll make a constant in our script: private static final int[] TIN_ID = { 7140, 7141, 7142 }; We’ll put this line right after this: public class BasicMiner extends Script { Now that we have the object ID found and defined, let’s change our original code to use the ID instead of a name, simply by changing this line: RS2Object vein = objects.closest("Rocks”); to this: RS2Object vein = objects.closest(TIN_ID); Step II: Area Based State For this script, we’ll see which state we should be in with the help of OSBot’s Area class, which is defined as Area(int x1, int y1, int x2, int y2). Simply stand on two opposite corners and fill in the x and y. For the areas, put this after our path variable: private static final Area MINE_AREA = new Area(3277, 3358, 3293, 3371); private static final Area BANK_AREA = new Area(3250, 3419, 3257, 3423); Step II: Path Making The first step to path walking, would be path making! We’ll be making a path by enabling the “Player Position” setting (same place we enabled Object Info): Now, I like to open notepad, or some other text editor while finding my path, so do that now. Alright, finding a path to the bank is pretty simple, but can be slightly confusing at first. Start at the tin veins, and add the position you’re current at (this will be used when we reverse the path to walk from the bank back): Then act like you’re walking to the bank, but only press ONCE on the minimap. Let your player walk to that position and stop, then write down your first position to that path. Then keep doing that until you’re in the bank, here’s what I got: 3283, 3363 3290, 3374 3292, 3386 3290, 3374 3291, 3401 3287, 3413 3282, 3427 3270, 3429 3256, 3429 3254, 3421 To turn this path into something we can use in our script, we’ll be using an array (collection of a type of variable). We’ll put this line of code right after where we defined TIN_ID: private Position[] path = { new Position(3283, 3363, 0), new Position(3290, 3374, 0), new Position(3292, 3386, 0), new Position(3290, 3374, 0), new Position(3291, 3401, 0), new Position(3287, 3413, 0), new Position(3282, 3427, 0), new Position(3270, 3429, 0), new Position(3256, 3429, 0), new Position(3254, 3421, 0) }; Yay! We now have a full path from the mines to the bank, which we’ll reverse to go from the bank to the mines (saving us a step)! Step IV: Path Walking Now that we have a path, let’s put it to use! First of all, let’s change our enum by removing the DROP constant, and adding WALK_TO_BANK, BANK, WALK_TO_MINES: private enum State { MINE, WALK_TO_BANK, BANK, WALK_TO_MINE }; Now it’s time to change our getState() function to return what exact state we should be in: private State getState() { if (inventory.isFull() && MINE_AREA.contains(myPlayer())) return State.WALK_TO_BANK; if (!inventory.isFull() && BANK_AREA.contains(myPlayer())) return State.WALK_TO_MINE; if (inventory.isFull() && BANK_AREA.contains(myPlayer())) return State.BANK; return State.MINE; } Now that the script knows what state we should be in, let’s handle the actual path walking, with a pretty simple method to traverse the whole path: private void traversePath(Position[] path, boolean reversed) throws InterruptedException { if (!reversed) { for (int i = 1; i < path.length; i++) if (!walkTile(path[i])) i--; } else { for (int i = path.length-2; i > 0; i--) if (!walkTile(path[i])) i++; } } You can put this method after getState() if you’d like, and the walkTile(path) will be underlined red, because we’re about to make that method too! I’ll explain this method, as it may look confusing: If the path isn’t reversed, we’ll iterate through the path starting at position 1 (note that arrays start at 0, but remember, our 0 is in the mine) until we end in the bank. If the path is reversed, we’ll simply do the opposite! We’ll start at the 2nd to last position (path.length - 2) and continue to decrease through the path until we end up back in the mine! The reason we aren’t using OSBot’s walk() method is because, well, it doesn’t work nicely at all. It tends to continue clicking the position til you’re there, and many other problems can happen. So here’s the walkTile(Position p) method, put this after the traversePath() method: private boolean walkTile(Position p) throws InterruptedException { client.moveMouse(new MinimapTileDestination(bot, p), false); sleep(random(150, 250)); client.pressMouse(); int failsafe = 0; while (failsafe < 10 && myPlayer().getPosition().distance(p) > 2) { sleep(200); failsafe++; if (myPlayer().isMoving()) failsafe = 0; } if (failsafe == 10) return false; return true; } Simply put, we move the mouse to where the tile is on the minimap, then press the mouse button. After that, we’ll sit around and wait until we’re pretty close to the tile we’re walking to. I also implemented a simple failsafe here, just incase we misclicked or something, that will reclick the same position until we're actually near that position. Step V: Preparing for Banking Now let’s actually make the walking states actually walk, by changing our onLoop() to this: @Override public int onLoop() throws InterruptedException { switch (getState()) { case MINE: if (!myPlayer().isAnimating()) { RS2Object vein = objects.closest(TIN_ID); if (vein != null) { if (vein.interact("Mine")) sleep(random(1000, 1500)); } } break; case WALK_TO_BANK: traversePath(path, false); sleep(random(1500, 2500)); break; case WALK_TO_MINE: traversePath(path, true); sleep(random(1500, 2500)); break; } return random(200, 300); } Step VI: Banking Now that we’ve managed to walk to and from the bank, let’s actually do some banking! If we’re in the bank state, that means we’re already in the bank! Now, let’s add this case to our onLoop() function (as seen above), by simply adding this after the last “break;” and before the ‘}’: case BANK: RS2Object bankBooth = objects.closest("Bank booth"); if (bankBooth != null) { if (bankBooth.interact("Bank")) { while (!bank.isOpen()) sleep(250); bank.depositAll(); } } break; This looks for the bank booth, if it isn’t null and if we actually managed to click on it, we’ll wait til it’s open, then deposit everything except our pickaxe, which is hardcoded so you’ll have to change this to whatever pickaxe you’re using. We’ll automatically detect which pickaxe we’re using in the next tutorial. Conclusion If you managed to get through this whole tutorial without error, congratulations! If not, you can find the full source here. I hope you've learned something from this, and if you didn’t, don’t worry! Programming takes time to learn, look this over a few times, I promise you’ll get it! Thanks for viewing my second tutorial, stay tuned for future tutorials!
    1 point
  16. Hello there, I know I’m not the most recognized user on this website or an important user like an admin or a moderator but please bear with me and take a little bit of your time to go through this chunk of text. The only reason I’m taking my time to write this is because I seriously believe not only the forums but OsBot as a company needs to somehow regulate scripters and the way money is received from script purchases. Why I think this? Recently I purchased Toph’s slayer, used it for 2 days and became nothing but garbage. The most “complex” script and probably one of the most expensive ones too is completely useless. The scripter apparently left and stopped developing and updating it. I don’t have access to the amount of purchases it had but I do believe it was REALLY high. In my opinion he can’t simply leave after getting some money with no explanation at all. Administrators should (Just like Apple) charge $$$ to those who want their scripts to be released onto the SDN. Why? This will stop scripter from leaving after receiving a decent amount of money (or at least should stop them until they recuperate what they invested). Another solution that could work along with this one is NEVER giving all the profit instantly with every purchase to the scripter. He should only be able to take chunks of the profit every X period of time and if he wants to take ALL of it without a proper explanation the administrators have the right to use the source code and even assign someone they know can handle the project to keep it alive. NOTE: For those scripts that have a price and aren’t on the SDN I don’t know how it can be handled. Any constructive criticism is received and please no flaming. I know, together, we can bring a solution to this important issue on the website. Administrators should understand that if the users feel safe before and after purchasing a script an increment in sales should be visible. Thank you for your time, Fareown
    1 point
  17. Could you PLEASE use capitals and punctuation. I don't understand a shit of this. And.. You're adding the 4 combat skills and the dividing them by 99 to get some kind of percentage, but actually what you do is: attack+strength+defence+hitpoints of person A = Y attack+strength+defence+hitpoints of person B = Z If Y is higher than Z, A has bigger chance of winning. If Z is higher, than B has a bigger chance of winning. This is not how it works.. hitpoints can make a big difference on a stake and maxes too. For example, 90 strength and 91 strength has the same max, so it doesn't matter. TL;DR Your logic is shit, l0l. Edit: there's no fucking 'formula' for staking, just look at both stats and with logic think who has odds.
    1 point
  18. lul kid m8 uve never evn seen the dank wed i smok all dai evry dai fgt as bich get wreked in teh mum
    1 point
  19. Could you please stop asking for attention? Or what are these topics full of nonsense? Or are you trying to be funny? Or is it just me.. You're not funny btw.
    1 point
  20. to be honest, i disagree with everything you are saying about drugs - considering this is 18+ forums people should be able to discuss as they please - just because you disagree with drugs doesn't mean everyone else does.
    1 point
  21. Ok guys what i'm trying to say is that i don't want this forums to be a junkie united.
    1 point
  22. I can tell you there was talk about making OSBot more than OSBot, but that was awhile ago. There were some big plans though.
    1 point
  23. Bro who cared runescape is r16? Lol kids not meant to play it even though it a kids game.
    1 point
  24. Merica...besides, cool people smoke meth...right?
    1 point
  25. I still don't think it is right to openly promote others nor have it spammed in chatbox about how much weed you did the other night. i don't believe that it should be banned from the forums but maybe kept between yourselves, not everyone on this site comes here to read about you guys destroying your bodies. i know "freedom of speech" however just because you can doesn't mean you should maybe tone it down abit or at least keep it off the chat box and in a forum post. where not EVERYONE has to read it..
    1 point
  26. What the fuck did you just fucking say about me, you little bitch? I’ll have you know I graduated top of my class in the Navy Seals, and I’ve been involved in numerous secret raids on Al-Quaeda, and I have over 300 confirmed kills. I am trained in gorilla warfare and I’m the top sniper in the entire US armed forces. You are nothing to me but just another target. I will wipe you the fuck out with precision the likes of which has never been seen before on this Earth, mark my fucking words. You think you can get away with saying that shit to me over the Internet? Think again, fucker. As we speak I am contacting my secret network of spies across the USA and your IP is being traced right now so you better prepare for the storm, maggot. The storm that wipes out the pathetic little thing you call your life. You’re fucking dead, kid. I can be anywhere, anytime, and I can kill you in over seven hundred ways, and that’s just with my bare hands. Not only am I extensively trained in unarmed combat, but I have access to the entire arsenal of the United States Marine Corps and I will use it to its full extent to wipe your miserable ass off the face of the continent, you little shit. If only you could have known what unholy retribution your little “clever” comment was about to bring down upon you, maybe you would have held your fucking tongue. But you couldn’t, you didn’t, and now you’re paying the price, you goddamn idiot. I will shit fury all over you and you will drown in it. You’re fucking dead, kiddo.
    1 point
  27. Agreed, nope. Like, why do people that smoke weed feel the need to discuss it 24/7. Is that the only thing you have knowledge about, so you have to rant about it all the time?
    1 point
  28. I would like an alien section. I can talk to my alien friends there freely without embarrassment.
    1 point
  29. We don't even have a flawless old school bot, but yet you're asking for an RS3 one which contains even more features?
    1 point
  30. wat no am serius idk wat 2 doplz help me!!!!!! I shall make her understand pain.
    1 point
  31. Too fucking right. Also: fuck off all you pussies crying about kids seeing drugs on forums, kids are already corrupted anyway since they are on the internet lol. (Unless their parents monitor their internet usage, kids are gonna be looking at drugs, pornography and a whole load of other shit whilst on the web out of pure curiosity)
    1 point
×
×
  • Create New...