Leaderboard
Popular Content
Showing content with the highest reputation on 07/23/13 in Posts
-
1. LlKE 2. Post something random 3. Hope you win account: TOMORROW i'll choose winner ( Random.org ) GOODLUCK16 points
-
This is a 500k giveaway it's only for Sponsers because they're the big supporters of Osbot. To win like this post and comment a number. Numbers are from 1-20. Used numbers will be posted. Numbers 18, 7, 15, 4, LED WON READ YOUR SKYPE MAN BEEN TRYING TO GET AHOLD OF YOU.3 points
-
Here is some useful post info unlike the rest :lol: Malwarebytes : Free anti-malware download AVG Free Antivirus | Free Virus Protection HiJackThis | Free software downloads at SourceForge.net CCleaner - PC Optimization and Cleaning - Free Download - Piriform DarkComet RAT Remover - CNET Download.com Paid: Content security software - Internet Security & Cloud - Trend Micro ...3 points
-
2 points
-
Welcome to my first ever guide i hope this helps you to make your perfect 1 defence pure. Part 1: 1 defence pure's, the look in: There are alot of 1 Defence pures and i'll talk about a couple of them. Below there will be different type's of 1 Defence pure with a brief insight to the stats the accounts usually have and why. Obby mauler: an obby mauler is typically an account that stays 1 attack/1 defence and has high strength. The reasoning behind this is for the obby maul. These accounts usually get 55 slayer for the ability to wield the slayer staff which takes the primary weapon slot while PKing. The staff can hit over 20's with around the same speed as a dragon scimitar with 80+ strength. The typical stats these accounts have are (fully maxed out): 1 Attack 99 Strength 1 Defence - Range 31 Prayer - Mage -Hp G maul ranger: These are accounts that have 50 attack with high strength and range. These are effective accounts for quick kills due to the speed of the special attack on the granite maul. Typically these accounts have (fully maxed out) 50 Attack 99 Strength 1 Defence 99 Range 44 Prayer - Mage -HP Dragon scimitar pure: The dragon scimitar pure is the most used type of pure. These accounts use dragon scimitars and dragon daggers to get kills while pking. These are the most effective pures for 1v1 pking (opinions vary) The typical stats of a maxed out dragon scimitar pure are: 60 Attack 99 Strength 1 Defence - Range 31 Prayer - Mage - HP Maxed out 1 defence pure These are the elite of all 1 defence pures. These are accounts that take a long time to train and often get alot of kills if correctly used while pking. These accounts are versatile for deep pking as-well as 1v1 pking due to the high stats these accounts have. The typical stats these accounts have are: 99 Attack 99 Strength 1 Defence 99 Range 52 Prayer 99 Mage And last but not least - Hybrids These accounts are for people who like team/multi pking over 1v1 pking. These accounts have varied stats (some are melee/mage some are range/mage) Typically these accounts have: - Attack - Strength 1 Defence 99 Range 52 Prayer 94 Mage - Hp Part 2: The quests. Below is a list of quests and what they ultimately unlock. Each one will include a quest guide (external link). Ancient Magic Mithril Gloves (RFD) Dragon Scimitar: Prayer book (Horror From The Deep) Crystal bow Ava's Accumulator Dragon Dagger(p++) Optional quests: BearHead Barrelchest Anchor This is the end of my guide i hope you've enjoyed it! This thread was written by me and me ONLY! I've spent hours getting all the correct information, so please dont say it isnt mine! Please give this post a like! Leave all suggestions on what else to add in the comments below. P.S please rate it out of 10 and give me some feedback.2 points
-
2 points
-
I understand there's already a topic on this, I find it somewhat difficult to understand. Please understand that using breaks is an important part in keeping your account unbanned. More information on how to bot smart -> http://osbot.org/forum/topic/6894-bot-smart-what-it-is-how-to-do-it/ Defining the parts of a "break" [Average Interval] - The "average interval" is the average time between breaks. It's an "average" because of interval deviations, which i'll be getting to in a moment. This is how much time will be in between your breaks on average. [interval Deviation] - This is a very important part of making sure jagex doesn't notice a precise pattern in our breaks. Lets say your "average interval" is 75 minutes, and your "interval deviation" is 10 minutes. This means that the time between your breaks can be anywhere from 65 - 85 minutes. [Average Break Time] - The "average break time" is the average length of the breaks your account will be taking. It is an average, because there are also break deviations, which I will get to in a moment. Your "average break time" should be how long you want your account to stay logged off per break on average. [break Time Deviation] - Break time deviation is very similar to "interval deviation". Your "break time deviation" is how much the length of your accounts break can deviate from the average time. Lets say your "average break time" is 20 minutes and your "break time deviation" is 5 minutes. This means your accounts breaks will be anywhere from 15-25 minutes long. Here is a picture of my break setup Please be sure that you have the "enable breaks" box selected. Now, let me explain how breaks work going off of my break setup. My "average interval" is 75 minutes. my "interval deviation" is 25 minutes. This means that the time in between my accounts breaks can be anywhere from 50 - 100 minutes. my "average break time" is 25 minutes. My "break time deviation" is 10 minutes. This means that the length of my accounts breaks can be anywhere from 15 - 35 minutes. If you have any more questions, please feel free to ask below. Drop a like on the post if this helped you!1 point
-
public boolean WalkAlongPath(int[][] path, boolean AscendThroughPath, int distanceFromEnd) { if (distanceToPoint(AscendThroughPath ? path[path.length - 1][0] : path[0][0], AscendThroughPath ? path[path.length - 1][1] : path[0][1]) <= distanceFromEnd) return true; else { WalkAlongPath(path, AscendThroughPath); return false; } } public void WalkAlongPath(int[][] path, boolean AscendThroughPath) { int destination = 0; for (int i = 0; i < path.length; i++) if (distanceToPoint(path[i][0], path[i][1]) < distanceToPoint(path[destination][0], path[destination][1])) destination = i; if (script.client.getMyPlayer().isMoving() && distanceToPoint(path[destination][0], path[destination][1]) > (script.isRunning() ? 3 : 2)) return; if (AscendThroughPath && destination != path.length - 1 || !AscendThroughPath && destination != 0) destination += (AscendThroughPath ? 1 : -1); try { log("Walking to node:" + destination); script.walk(new Position(path[destination][0], path[destination][1], 0)); Thread.sleep(700 + MethodProvider.random(600)); } catch (InterruptedException e) { e.printStackTrace(); } } private int distanceToPoint(int pointX, int pointY) { return (int) Math.sqrt(Math.pow(script.client.getMyPlayer().getX() - pointX, 2) + Math.pow(script.client.getMyPlayer().getY() - pointY, 2)); } This allows you to have your character walk along a path, starting at any point along the path. It will walk like a human, not like a bot. This is how you'd use it: private int[][] path1 = new int[][] { { 3206, 3209 }, { 3215, 3211 }, { 3217, 3218 }, { 3225, 3218 }, { 3235, 3220 }, { 3242, 3226 }, { 3252, 3226 }, { 3251, 3235 }, }; public void walkToGoblins() { WalkAlongPath(path1, true); } public void walkToBankFromGoblins() { WalkAlongPath(path1, false); } public void walkToGoblinsThenAttack() { if(WalkAlongPath(path1, true, 1)) //The 1 is the distance away from destination state = State.AttackGoblins; } Enjoy.1 point
-
So I found and posted a guide about this before but I think it got deleted and I have some people asking about this so here it goes! You can write a mini "Terms of Service" of your own when negotiating on paypal. Basically, contacts can be by word of mouth, or written. By the wonder of the internet, you can do this via paypal. Steps: 1. do NOT let them send you money, deny it instantly. 2. REQUEST Money from them for "Service" Then Then 3. Paypal will ask you what the "Title" of your request will be. This is the title of the payment request they get in their email. To make this work you MUST make the Title: "TERMS OF SERVICE - READ BEFORE PAYMENT" 4. Put in the "Comments/Description" your own "Terms of Service" which should read: "By accepting the payment for $XXX.XX USD, you agree to the following terms of service: 1. You have received ALL services and goods in question, and the sale is FINAL. 2. There are NO refunds, returns, or chargebacks. 3. You will not create false paypal disputes regarding this transaction." 5. Instruct the person to READ the email, and screenshot that you've done so. 6. Do NOT give him the items before the trade, only after the payment has been made. Original Post http://www.gamers4life.com/forums/f20/paypal-charge-back-how-avoid-300309/1 point
-
1 point
-
1 point
-
but i mean 3 straight disputes from mew saying it was his partner, i mean... thats pretty obvious1 point
-
Yeh, like alot of people said, surpsie exam isn't working. it kept spamming this [INFO ][07/23/13 06:53:32 PM]: Activating random : Surprise Exam [INFO ][07/23/13 06:54:27 PM]: Exited random : Surprise Exam [ERROR][07/23/13 06:54:28 PM]: Error on executing random worker! java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 at java.util.LinkedList.checkElementIndex(Unknown Source) at java.util.LinkedList.get(Unknown Source) at org.osbot.Db.onLoop(re:379) at org.osbot.script.rs2.randoms.RandomManager.scan(fl:13) at org.osbot.a.run(qh:184) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) [INFO ][07/23/13 06:54:29 PM]: Activating random : Surprise Exam [INFO ][07/23/13 06:55:10 PM]: Exited random : Surprise Exam [ERROR][07/23/13 06:55:10 PM]: Error on executing random worker! java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 at java.util.LinkedList.checkElementIndex(Unknown Source) at java.util.LinkedList.get(Unknown Source) at org.osbot.Db.onLoop(re:379) at org.osbot.script.rs2.randoms.RandomManager.scan(fl:13) at org.osbot.a.run(qh:184) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) [INFO ][07/23/13 06:55:11 PM]: Activating random : Surprise Exam [INFO ][07/23/13 06:56:16 PM]: conf: 512, 1795162112 it was done with the exam though, it only had to click the red door.1 point
-
Paying? I'm sorry but what the hell are you paying them? Cause it certainly ain't with VIP or Sponsor that's for sure1 point
-
1 point
-
The one in SND has been out of stock for a while. For some reason they don't want people to have it, which is why I made this.1 point
-
I don't like it. I ass just as much as the next guy but, yeah. If I want to see some ass when I'll go elsewhere.1 point
-
"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." - 4Chan1 point
-
1 point