Leaderboard
Popular Content
Showing content with the highest reputation on 03/28/15 in Posts
-
3 points
-
getAntiBan().unregisterAllBehaviors(); edit: or just getAntiBan().unregisterBehavior(BehaviorType.CAMERA_SHIFT); getAntiBan().unregisterBehavior(BehaviorType.RANDOM_MOUSE_MOVEMENT); if you want, but personally I use the first one (unregisterall)3 points
-
3 points
-
Reopened. I have screenshared with and the timestamps of the screenshots that were taken match the exact minute of the timestamp in the Skype conversation which proves that he did infact trade you, @Transaction You are to trade him the gold, failure to do so will result in a ban.3 points
-
SHAKUR CURSER 1.0 features: - Exits out if you are not in the area - Exits out if you don't have enough runes to cast - Random camera movement - Human like mouse movement This is my first script so don't give me too much of a hard time . I noticed there wasn't a curser that worked on OSBot so I decided to try to make one myself and you really don't want to know how long this took. I tried to make this as advanced as possible. Let me know if there is any bugs but really this is a basic script. I ran it for 1 hour and am running it now with success. DOWNLOAD JAR: HERE Virustotal Link: HERE Tested/Made with OSBot 2.3.56 CREDIT TO @mailinator FOR THE UPDATED PAINT! Updates:2 points
-
2 points
-
It did seem like you were trolling indeed, next time be more clear. Just reading through it. But thanks for the clarification, a ban might have been too harsh. Please do so.2 points
-
2 points
-
Oh...Im in my second semester of taking AP Comp Sci. Right now were working on inheritance2 points
-
You said you traded him on 3:49pm, the screenshot was taken at that exact time, there are no previous trades visible in the ingame chat.. In case you have any evidence that might prove that he did not trade you or attempted to frame you, please provide it. If not, you are to refund him the gold or get banned. It's up to you.2 points
-
Proxifier – The Correct Way to Proxy on Mirror Client! 1. Download Proxifier Here! 2. Activate with one of the following keys: a. KFZUS-F3JGV-T95Y7-BXGAS-5NHHP b. T3ZWQ-P2738-3FJWS-YE7HT-6NA3K c. KFZUS-F3JGV-T95Y7-BXGAS-5NHHP d. 65Z2L-P36BY-YWJYC-TMJZL-YDZ2S e. SFZHH-2Y246-Z483L-EU92B-LNYUA f. GSZVS-5W4WA-T9F2E-L3XUX-68473 g. FTZ8A-R3CP8-AVHYW-KKRMQ-SYDLS h. Q3ZWN-QWLZG-32G22-SCJXZ-9B5S4 i. DAZPH-G39D3-R4QY7-9PVAY-VQ6BU j. KLZ5G-X37YY-65ZYN-EUSV7-WPPBS k. 6JZUY-32TKX-TK9W7-DU387-9RWKZ i. I’ve personally activated Proxifier on three machines with no issues. If the keys for some reason don’t work, please let me know and I’ll find more! 3. Now let's configure this bitch! a. b. c. i. Address being the address provided by your proxy provider ii. Select the radio button for ‘Socks Version 5’ iii. Check ‘Enable’ in the authentication groupbox iv. Enter the credentials provided by your proxy service v. Then click ‘OK’ d. e. i. Set the ‘Default’ rule to ‘Direct’ under ‘Action’ ii. Remove the ‘Localhost’ rule by selecting the rule and hitting ‘Remove’ iii. Click ‘Add’ to create our RuneScape proxy rule! f. i. You can name the rule whatever you like, I chose RuneScape because well... It’s going to be proxying RuneScape ii. Under ‘Target Hosts’ enter ‘*.runescape.*’ – this will proxy connections to RuneScape globally so if you access the account management page in your browser, it will proxy it. If you load OSBuddy, it will proxy it. If you play RS in Chrome, it will proxy it, and obviously OSBot. iii. Select your proxy under ‘Action’ iv. Click ‘OK’ to save your new rule! g. Click ‘OK’ in the rules window and reload your client/browser. If you configured everything successfully, you’ll see something that looks like this: h. ??? i. Profit1 point
-
RSBuddy/OSBuddy Exchange has more accurate prices than Zybez for the most part. import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.net.URL; import java.net.URLConnection; public class PriceLookup { private static URLConnection con; private static InputStream is; private static InputStreamReader isr; private static BufferedReader br; private static String[] getData(int itemID) { try { URL url = new URL( "https://api.rsbuddy.com/grandExchange?a=guidePrice&i=" + itemID); con = url.openConnection(); is = con.getInputStream(); isr = new InputStreamReader(is); br = new BufferedReader(isr); String line = br.readLine(); if (line != null) { return line.split(","); } } catch (Exception e) { e.printStackTrace(); } finally { try { if (br != null) { br.close(); } else if (isr != null) { isr.close(); } else if (is != null) { is.close(); } } catch (Exception e) { e.printStackTrace(); } } return null; } public static int getPrice(int itemID) { String[] data = getData(itemID); if (data != null && data.length == 3) { return Integer.parseInt(data[0].replaceAll("\\D", "")); } return 0; } public static int getAverageBuyOffer(int itemID) { String[] data = getData(itemID); if (data != null && data.length == 3) { return Integer.parseInt(data[1].replaceAll("\\D", "")); } return 0; } public static int getAverageSellOffer(int itemID) { String[] data = getData(itemID); if (data != null && data.length == 3) { return Integer.parseInt(data[2].replaceAll("\\D", "")); } return 0; } } Dump of all the prices from March 27, 2015: http://pastebin.com/rQ5dk7mp1 point
-
Doing free elo boosts up to gold 5 in NA/EUW/LAN until the Japanese servers go live. No placement matches. Other servers are possible but i have not ping tested all of them. I won't use any RP/IP without permission. I do not require your pw, you may log in with teamviewer if you feel the need. Duo que maybe possible on some servers. Fill out Donations are accepted will put you ahead in line 5$= +1 Division Ahead if I'm boosting someone else already.1 point
-
1 point
-
1 point
-
1 point
-
*eyes nervously* *bites off head* *@Dex restrains me* NOAH SPIT HIM OUT! No! Muffins are meant to be eaten! *@Oliver Tickles me* *I start spitting up chunks of muffins* That was a cold move guys... Anyways Welcome Back!1 point
-
1 point
-
1 point
-
Wrote a quick guide for peeps like you Take a look! http://osbot.org/forum/topic/58775-a-beginners-guide-to-writing-osbot-scripts-where-to-get-started-by-apaec/ Apa1 point
-
any chance you can tell me what defense quests to do for 42 def? edit: just dont do holy grail and GG1 point
-
User has been banned, I'm sorry for your loss.1 point
-
1 point
-
1 point
-
Gonna get drunk/raped/not remember anything/wake up at your best friends house/in his bed "he wakes up naked/both of you guys wondering wtf happen last night/refused to come to terms that you had sex together and are both gay. ^ not that, that has ever happen to me buh eh I cant remember turning 21. Read with caution* EDIT* Forgot Happy Birthday man. "TURN UP"1 point
-
1 point
-
1 point
-
The problem is that over the time i've used this script, I had to wait time for the next update more than I could bot. Not that there are any problems right now, I don't think.1 point
-
remove public static void main(String[] args) { GUI window = new GUI(); window.frame.setVisible(true); } in the main class create a simple instance of the gui GUI window = new GUI(); then in the onstart you make it visible window.frame.setVisible(true); and incase you are waiting for gui to end before you continue with the script. in the onloop add a simple isVisible() boolean check1 point
-
1 point
-
Sorry but declining, you aren't very active and I'm looking for somewhat trusted users.1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
Bollywood movies are an absolute blast, especially if you watch with a group of people. Everything's just so over the top, it's insane.1 point
-
1 point
-
Just ss it. If it was meant to be private at least let them know you're misguiding their trust. If you were meant to keep it then who cares.1 point
-
Apparently you didn't read the thread on how to run it, you need to move the mirror client jar into your osbot data folder. http://osbot.org/forum/topic/66800-osbot-mirror-client-your-guide/1 point
-
1 point
-
Dude the proof is shown already man atleast have some dignity to know you have gotten caught the proof is ^^^ I have shown it to @Dex Dude it is final man you got caught just pay me what the hell you owe me man and just don't do it to anyone else no point in still trying to lie man. The only thing you have is your WORD once you screw that over no one will ever trust you. Deliver my gold is the first step to gaining anyone trust back man acknowledge you scammed me and move on.1 point
-
All we can do is make assumptions based on logical thinking. If we stick with the tier system, it's likely that they have all sorts of monitor detail levels where the higher level tiers use more computational resources and therefore only used for a very small group of characters. In general, the first tier will most likely be things like hours of play time, break times and activity. This costs very little resources to track and compute. For example, a new account, that is playing 10 hours a day doing only activities that have a very high banrate, no quests or talking etc. Second level tier might then actually compare behaviour of the activities. Imagine a woodcutting script that performs the same actions in the same order: bank, walk to first tree, chop first tree, walk to second tree, chop second tree, walk to third tree, chop third tree, eat rinse and repeat. Anti-ban is only checked between certain actions, making that an easy to detect pattern as well. Then when a bird nest appears, it will immediately grab it. When a tree spirit appears or an ent, it will immediately react to it. Normal players tend to perform their actions by a similar pattern. But these patterns are different every once in a while and most certainly will be different from other players. The key in making scripts less detectable is breaking patterns but also trying to achieve a certain difference between different players based on a profile. The more difference there is between two players using two scripts, the less likely it is their machine learning technology is able to identify another player using the same script as using that same script. But then again, it is possible that once you get in to a higher level tier, they start creating profiles based on mouse movements. These profiles can be compared and identified as similar. So that means there is definitely work on our side to be done as well to make key elements of our bot perform different for each player as well, like mouse, keyboard and interactions. I think if both parties can improve on this, together with the mirror client, we might make a jump ahead in the cat and mouse game on which we have been behind for some time now.1 point
-
Don't forget that Jagex tracks you through the random.dat file. If you haven't deleted your random.dat file, even on a new account that is only used on the mirror client, they can still relate that account to your previous accounts. It's also possible they have more tricks like these on their sleeves with their cache. Deleting both your cache and your random.dat is a smart move and might make a difference when starting a new account. Edit: The random.dat is a file that contains a UID (Unique Identification Number). This file is set by Jagex and related to all the accounts you play from that one computer. It is assumed that Jagex does not ban based on your IP but based on this UID. What we should do in the future, is write a tool that makes the OSRS client use a different random.dat (spoofed) file for each account to make sure accounts are not linked to each other through the random.dat file. This should definitely make a difference when it comes to their tracking system when making new accounts.1 point
-
I made @TiempoSales aware about this dispute and placed him into TWC. He has 24h to refund you/ replace the proxy or he will get permanently banned as this isn't the first time he is involved in flagged IP's.1 point