Everything posted by Ericthecmh
-
[$0.99] CMHEssMiner
Great. I look forward to it. Eric
-
[$0.99] CMHEssMiner
Exactly why I made it Thanks. Glad you like it Post a proggy if you get the chance please :P Eric
-
[$0.99] CMHEssMiner
Hahah I've done some scripting for RSBot and Rarebot before I'll check it out. EDIT: Thank you for the report. Jagex changed quite a few of the id's. Fixed now in version 0.8.5 BETA Eric
-
[$0.99] CMHEssMiner
You need to type your desired password here: and then type the same password here: Great thanks! Eric
-
[$0.99] CMHEssMiner
"outlogged"? You mean logged out? Random handling is separate from my script. To be honest, I really don't know why the random solver keeps failing for you :P Try posting here. Hopefully somebody can help you out there. Eric
-
[$0.99] CMHEssMiner
Glad you like the script . Thank you for the proggy. Eric
-
Autoupdater (jar)
The version variable in the script manifest is a double right? That wouldn't allow me to number my versions as things like 0.8.3 because 0.8.3 can't be stored as a double. But yeah it does get annoying to change the version number in three different places instead of just updating the version in the script manifest :P Eric
-
[$0.99] CMHEssMiner
Great! I look forward toseeing it when I wake up tomorrow morning :P Eric
-
[$0.99] CMHEssMiner
for me it says the passowrds dont match, what passwords? Are you trying to create an account? Type your desired password in the box, and click Create Account. It will prompt you to confirm your password. Those two passwords must match. Eric
-
Autoupdater (jar)
This might not be the best way to write an autoupdater, but it's the way I've done it: Setup: On server, have the jar file (CMHEssMiner.jar) and a versioninfo file. CMHEssMiner.jar is the jar file (duh) versioninfo contains one line with the version (eg. "0.8.3 BETA" -- no quotes) In the code, create a constant: public final String version = "0.8.3 BETA" in the onStart method: URL url = null; try { url = new URL("http://osbot.no-ip.org/distfiles/versioninfo"); } catch (MalformedURLException e) { // TODO Auto-generated catch block e.printStackTrace(); } InputStream is = null; try { is = url.openConnection().getInputStream(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } BufferedReader reader = new BufferedReader(new InputStreamReader(is)); try { String line = reader.readLine(); if (!line.equals(currentVersion)) { updateScript(line); canStart = false; return; } } catch (IOException e) { } I created a separate method for the updating part: private void updateScript(String version) { try { URL url = new URL( "http://osbot.no-ip.org/distfiles/CMHEssMiner.jar"); InputStream in = url.openStream(); int bytesRead; byte[] buf = new byte[4 * 1024]; String filename; if (System.getProperty("os.name").startsWith("Window")) { filename = "\\OSBot\\scripts\\CMHEssMiner.jar"; } else { filename = "/OSBot/scripts/CMHEssMiner.jar"; } OutputStream os = (new FileOutputStream( System.getProperty("user.home") + filename)); while ((bytesRead = in.read(buf)) != -1) { os.write(buf, 0, bytesRead); } os.flush(); os.close(); in.close(); JOptionPane.showMessageDialog(null, "Script has been automatically updated to version" + version + ". Please refresh your scripts list and run the script again."); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } } If anyone has a better way to do this or suggestions, I'd love to hear them Eric
-
[$0.99] CMHEssMiner
I am please to announce version 0.8.3 of the script: What's new? Remotely view current status! When you run the bot, a login window will appear. If you don't have an account (you probably don't), just type your desired username and password and hit "Create Account." It will ask you to confirm your password and enter your email (in case you need to reset your password). Visit osbot.no-ip.org to see your status! It updates every 5 seconds. Eric
-
[$0.99] CMHEssMiner
The problem of getting stuck at the portal has been fixed. The script will also walk back from Lumbridge if you die. The newest version is 0.7.10 BETA. Eric
-
[$0.99] CMHEssMiner
I suppose I could add a method for it to walk back to Varrock if it dies. As for the portal thing, I've noticed it as well, and I'm currently working on it. Thanks for the report.
-
[$0.99] CMHEssMiner
I frankly have no idea why this is happening... I get paint on all three of my computers... what version of OSBot are you using? But the script works fine other than the paint not showing?
-
[$0.99] CMHEssMiner
I don't have much paint. It's just some text in the middle of the screen. Do you not see the text either? Should be fixed now. Thanks for the PM.
-
[$0.99] CMHEssMiner
Does it print any error messages? What is the state? Is it "PORTAL" or "WALK_VARROCK_BANK"? What version do you have? I just update the script. Great I hope you like it. Please post a proggie if you get the chance
-
[$0.99] CMHEssMiner
Yes it will. If that random occurs, the random solver will run, and once it finishes the random, the script will resume operation. It has successfully overcome this many times during my tests. Please note that I have updated the script, so if you want to use it please download the updated one in the original post. This version incorporated an auto-update system. From this version on, the script will automatically update itself.
-
Ultra Essence ~ mines pure essence for a decent profit
If you've run OSBot at least once, there is a folder called OSBot in your home directory (C:\Users\Youruser\) Copy the script into OSBot\scripts. From OSBot, click the run button on the top left, and go to local scripts. Hit refresh, it should appear.
- [$0.99] CMHEssMiner
-
[$0.99] CMHEssMiner
Glad to see that it's serving you well. I look forward to your progress report
-
[$0.99] CMHEssMiner
Ahhhhhhh!!! I've been selling at 75gp... meh I'll be sure to to sell higher from now on haha You are most welcome. Hope you like the script. Please post any bugs you find, or any suggestions you think of. Proggies are welcome
-
[$0.99] CMHEssMiner
Haha thanks for the catch :P Tell me how it goes.Just curious, how much do you sell for?
-
[$0.99] CMHEssMiner
GET THIS SCRIPT FROM THE SDN HERE FOR [$0.99] What is ericthecmh working on? Find out here: http://cmhscripts.com/current-status.html Features: Mining in both Yanille and Varrock! Mines up to 1100 Ess/Hr in Yanille, 800 Ess/Hr in Varrock Supports any pickaxe, both weilded and in inventory Antiban World hopping if Jagex Mod is nearby Cleverbot chat Can get past door and randoms Script autoupdates Walks back from Lumbridge if you die. Implements running in a special way to maximize speed without wasting energy Can drink restore pots to restore your magic level if it falls below 66 due to random event. Support of Runecrafting pouches Start the script with the pouches you want to use in your inventory! Upcoming: Suggestions??Website: My Website (Note this is different from the website you use for checking your status). Special Thanks to: MillSup for the graphics and logo designKnown Bugs: Broken failsafe for getting stuck downstairs in magic guild. PLEASE REPORT ANY BUGS YOU FIND Proggies: Any and all proggies are welcome.