Jump to content







[RELEASE]ShadowMiner[RELEASE]


  • Please log in to reply
38 replies to this topic

Poll: Next Update (44 member(s) have cast votes)

What Should The Next Script Update Be?

  1. More Locations (42 votes [95.45%] - View)

    Percentage of vote: 95.45%

  2. A Nice Mouse (2 votes [4.55%] - View)

    Percentage of vote: 4.55%

  3. A Nicer Paint (0 votes [0.00%])

    Percentage of vote: 0.00%

Vote Guests cannot vote

#21
tjsaywha

tjsaywha
  • Members
  • 15 posts
  • Joined 20-February 11

View PostShadowGod, on 11 July 2011 - 02:12 AM, said:

UPDATED Fixed Some Bank Bugs :)
wont let me compile the script and i cant get on 2.56 either so i have to be on 2.55. NOOO! :[

#22
joker14joker420

joker14joker420
  • Members
  • 3 posts
  • Joined 15-July 11

View PostShadowGod, on 04 July 2011 - 08:20 PM, said:

Shadow Miner Is Back!

Information -

After 1 and a half years, I, ShadowGod, have returned to RSBot to make scripts. I come back, and the API is changed. I learned to script with the new API and here it is! The revolutionary return of one of the best Mining bot scripts ever! ShadowMiner! This current version only mines at varrock west, but I am working on a gui, and once that gui is made it will work with multiple locations + ores.

Old Thread  -
http://www.powerbot...._1#entry2702114


Features

- Antiban
- GUI
- Mines multiple ores( Iron, Tin, Silver, and Clay )
- PowerMine
- Banking
- Paint
- Mines at Varrock West for right now. More locations to be added soon!



The Download -

Save it as ShadowMiner.java

Click Here

Change Log -
July 4, 2011 : Release
July 6, 2011 : GUI with the choice to select ores. Fixed walking bugs. Fixed bank bugs.
July 7, 2011 : GUI Has Been Edited. Choice Of Whether to Bank or PowerMine. AntiBan.


Also, Please post proggies, bugs, and give feedback!

Proggies + Quotes!

Proggies
1 hour 45 min
http://i29.tinypic.com/25gh285.png

2 hours 30 min
http://i32.tinypic.com/2mdkn08.png

1 mil
http://i28.tinypic.com/123v492.png

2 hours
http://i56.tinypic.com/2h6u328.jpg

Quotes :






















BTW I had alot more quotes, but apparently "You have posted more than the allowed number of quoted blocks of text" For All of The Quotes go Here







DOES THIS WORK?!?!?!?!?!?! _ I DOWNLOADED AND IT JUST CAME OUT AS WORD PROCESS VERSION OF A SCRIPT _ PLEASE REPLY TO THIS IF YOU KNOW IF THIS WORKS!!!!!????   :@ :D :p :p :D :) ;)

#23
OldFaithful

OldFaithful
  • Restricted
  • 1253 posts
  • Joined 23-February 11
Update the paint! :D
TBH, if im not so critical. Its one of the worst paints ive seen.
From what ive seen on the comments on this thread, your a good scripter, just your paint lets you down?

#24
ShadowGod

ShadowGod
  • Members
  • 393 posts
  • Joined 09-January 10

View PostOldFaithful, on 15 July 2011 - 02:29 AM, said:

Update the paint! :D
TBH, if im not so critical. Its one of the worst paints ive seen.
From what ive seen on the comments on this thread, your a good scripter, just your paint lets you down?
Yeah :D I suck at makin things look good :)

#25
dennise89

dennise89
  • Members
  • 16 posts
  • Joined 18-August 11
mine wont bank...

#26
burninflames

burninflames
  • Members
  • 3 posts
  • Joined 16-October 11
Doesnt work i activate the script but just stands there add me i need help

whycanti25@yahoo.com

#27
minnergod1

minnergod1
  • Members
  • 29 posts
  • Joined 10-February 10
Love your script man, but like i voted, Needs alot more locations if you would please :).
(living rock cavern if you can) <--Havent found one that supports both coal and gold anymore-->

#28
DonkeyLALA

DonkeyLALA
  • Members
  • 524 posts
  • Joined 04-August 11
Hey bro, i was looking to your script (analyzing it) to check for logic bugs...
this code that you have here
if (txt.contains("You do not have")) {
   log("no Pickaxe ... logging out and stopping script");
   game.logout(true);
   stopScript();
  }
if i were to type "You do not have" at a mine and people were to use your script they will all log out of the game and i will win ores :p :)
(no trolling btw)

i would say change this  to check if you have a pickaxe in inventory or ur wielding it

#29
DonkeyLALA

DonkeyLALA
  • Members
  • 524 posts
  • Joined 04-August 11
BTW, Is this script quitted on?

i can take care of it if you want me to?

#30
ItzMeh

ItzMeh
  • Members
  • 208 posts
  • Joined 08-March 11
Will posts proggy if it works

#31
ShadowGod

ShadowGod
  • Members
  • 393 posts
  • Joined 09-January 10
Hey everyone, sorry for not updating the bot. I quit Runescape for some time. I am now back and I will make ShadowMiner the best it can be.

Edit:
Shoutout to my friend WillBriggs for bringing me back to Runescape. This script would die if it wasn't for him!

Edited by ShadowGod, 30 October 2011 - 04:38 PM.


#32
pwnd_

pwnd_
  • Members
  • 488 posts
  • Joined 20-February 09
Sorry, I must lol at much of your code.

private boolean needToBank(){
if (inventory.isFull()) {
return true;
} else
return false;
}
Not really that code, but you could just do:
return inventory.isFull();

private void walkOreTile() {
if (getMyPlayer().getLocation() != oreTile) {
if (walking.walkTileMM(oreTile))
;
}
}
This doesn't really make sense to have that last if statement.

public boolean walk(RSTile[] path) {
RSTilePath paths = walking.newTilePath(path);
if (calc.distanceTo(walking.getDestination()) < random(5, 7) ) {
paths.traverse();
}
return true;
}
This will ALWAYS return true.  Really no reason for it to return any value.

public boolean dropOres() {
status = "dropping ores";
inventory.dropAllExcept(pickID);
return true;
}
Same deal here.

Just a few things

#33
ShadowGod

ShadowGod
  • Members
  • 393 posts
  • Joined 09-January 10
Lol all you want, I made this so long ago, it made me lol. I have rewritten basically the whole script, all i kept was the loop. I even had to edit that xD. I will finish it up with more ores, locations, and options and a sexier gui because the current one looks like shit. Thanks everyone for being patient while I re-make this horrific script.

#34
pwnd_

pwnd_
  • Members
  • 488 posts
  • Joined 20-February 09
Sorry, I didn't realize you were in the middle of a rewrite :p  At least you have those pointers if you needed them!

#35
ShadowGod

ShadowGod
  • Members
  • 393 posts
  • Joined 09-January 10
Don't worry about it, and Thanks! I'll let you know if I need help, but it looks good so far. If only I could test it :/

#36
frazboyz101

frazboyz101
  • Members
  • 379 posts
  • Joined 05-August 11
Nice.

#37
Zwine

Zwine
  • Members
  • 82 posts
  • Joined 16-December 10
This looks good... I'll try it when bots come back Posted Image

#38
DonkeyLALA

DonkeyLALA
  • Members
  • 524 posts
  • Joined 04-August 11
im gonna make a new one...
abetter one

#39
ShadowGod

ShadowGod
  • Members
  • 393 posts
  • Joined 09-January 10
Guess whose back with good news?Posted Image
I have decided to update this script as soon as bots get back. Be prepared for the biggest update to Shadow Miner since it was born back in 2009