-
Posts
162 -
Joined
-
Last visited
-
Feedback
100%
Everything posted by Jeune Padawan
-
All my accounts are getting locked for being "stolen"
Jeune Padawan replied to Jeune Padawan's topic in Botting & Bans
Well my 10 ips are flagged lol... I think I'll go back to getting my own socks 5 proxy servers lol -
All my accounts are getting locked for being "stolen"
Jeune Padawan posted a topic in Botting & Bans
Yo. Basically, my proxy provider provides me an ip for http and socks5. The ip is the same, but the port is different. I make the account using the http port and ip, load up osbot using the socks 5 ip (same as the http but different port) and as soon as I log out and try to log back in, it says I'm locked because they think the account was stolen... How do I prevent this? I'm not used to botting with proxies, so yeah... I have my vpn, sure, but I can't use it for like 2+ accounts in case of a chain ban. Any tips on why I'm getting fucked over here? Thanks. -
Script got stuck there lol It'd be great if it was updated
-
Hey. I'm trying to load your tutorial island script, but it's not working. I start it, it becomes green and then it doesn't start. Here's an exemple of it : http://i.imgur.com/aizUiZq.gifv The log : I manually verified and the account informations are valid, the proxy is working and the username and password of osbot account is good too. I also tried with different scripts but with no success (sdn and local). Thanks for the help. Your manager looks really cool. It'd be great if it worked for me
-
Here's the proper way of doing it : import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import javax.swing.*; import java.awt.*; import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; @ScriptManifest(author = "Purple", name = "IP Display Changer", version = 1.01, info = "Changes the title of your osbot to display your bots IP address.", logo = "") public class Display extends Script { @Override public void onStart() { changeFrameTitle("OSBot (" + getCurrentIPAddress() + ")"); stop(false); } public void changeFrameTitle(final String title) { for(Frame frame : Frame.getFrames()) { if(frame.isVisible() && frame.getTitle().startsWith("OSBot")) { SwingUtilities.invokeLater(() -> frame.setTitle(title)); break; } } } public int onLoop() throws InterruptedException { return 0; } public String getCurrentIPAddress() { try { URL url = new URL("http://myip.dnsomatic.com/"); BufferedReader b = new BufferedReader(new InputStreamReader(url.openStream())); String ip = b.readLine(); b.close(); return ip; } catch (Exception e) { e.printStackTrace(); } return "null"; } }
-
lol we would all be banned within seconds then. If they detected it, they wouldn't let bots run for months without bans.
-
Just resize it a bit... It's really really sick dude
-
Dude why are you not showing your "Solution" sig... It's sick looking af...
-
How to pickup an item in bank when I hit a certain level?
Jeune Padawan replied to Jeune Padawan's topic in Scripting Help
Logs is toLowerCase(). As for the rest, the Chop Down still works actually -
Yo. Basically, I'm trying to make a simple woodcutting script where when he's under level 21, he cuts trees with his iron axe and banks them. When he'd hit 21, he'd go at the bank and deposit everything and then, pickup a mithril axe to go back cut trees. At 31, he would go to bank, deposit all, withdraw an adamant axe and go cutting willows. However, I don't really know how to "say" it. It's like I would have needed a "when" statement for when I hit x level... This is what it looks like right now. I know it is wrong. Also, anyone knows why line 64 is underlined? It's pissing me off >_> Thanks for the help
-
How to show x number of logs chopped?
Jeune Padawan replied to Jeune Padawan's topic in Scripting Help
Isn't this only for tracking experience? Or can I use the experienceTracker for items? Seems weird or I probably misread what you said lol -
Hey. Basically, I wanted to try implementing an "AntiBan" to my script. I saw this https://github.com/Elmling/OSBot-API/blob/master/API/AntiBan.java I made a new class, but how do I call this : I want to call this in my main class "SimpleWoodcutter". Also, where should I call it? Like when I'm cutting a tree? I tried a few things like "AntiBan.doRandomAntiBan();" but it didn't work lol Is it a good thing to implement this? Thanks
-
How to show x number of logs chopped?
Jeune Padawan replied to Jeune Padawan's topic in Scripting Help
Wow this works perfectly. Your way of doing it is way easier than the other ways. Is there a way of doing that for items picked up? Like logs or something? Thanks a lot for the help. -
How to show x number of logs chopped?
Jeune Padawan replied to Jeune Padawan's topic in Scripting Help
Nice This works perfectly now. As for the xp per hour? How the hell do I do that? I tried doing it Pugs' way but it's not working. I declared private int logsPerHour and totalLogsPerHour at the beginning of the script. Idk how to implement it >_> Pug's code seems like it's outdated compared to Explv's but he's not talking about any thing /per hour in this paint guide. He also says that for showing the exp, you gotta do this : How do I call this in the paint? g.drawString("XP Earned: " + formatValue( what do I put here ? ), 10, 330); Thanks for the quick help. Really nice. P.S. getBank().close(); worked great with esc turned off! It closes with the x button now -
How to show x number of logs chopped?
Jeune Padawan replied to Jeune Padawan's topic in Scripting Help
I do not know how to do neither. It's not explained in Explv's guide -
How to show x number of logs chopped?
Jeune Padawan replied to Jeune Padawan's topic in Scripting Help
I highly doubt I did it correctly with the message. It also seems like I couldn't put it in an if statement. The "gr" is still underlined >_> -
Yo. Basically, I'm making a very simple woodcutting script and I'm working a bit on the paint right now. So far, I got the "Elapsed Time" working good. For the number of logs chopped, I declared the "int logsChopped = 0" variable at the top of the script. Then, in the onPaint, here's what I have: Problem is, first, why the hell is the "gr" underlined at line 74? Second, I thought it would add +1 to the number of logs chopped every time it saw the message "You get some some logs." in the chat. However, it is not. Also, what would I have to write if I wanted my bot to close the bank window with the "x" button at the top right? Thanks a lot.
-
Oh shit alright... I'm a pleb I guess lol
-
Where can I see this script? I don't see it on the SVN.
-
Hey I'd like a trial please
-
There are rocks I can't select with screen mode: http://screencast.com/t/LY8L7GGL9 I could at first, but after like 30 minutes the bot wouldn't mine them since they weren't selected anymore. After I started back the script, I still couldn't select them. Thank you.
-
m8 mirror mode is nice and all but it ain't gonna prevent some mod to /cut you lol
-
Can you look into fixing screen mode for selecting rocks? Sometimes, there are rocks you can't select... They have the yellow square, but when you click it, it's not turning green. Check for yourself...