Log in

View Full Version : YoHoJo's [P]ower [M]iner [S]upreme



Pages : 1 2 [3] 4 5

piefool
03-27-2010, 08:40 PM
ok the screen is back now and i have all the lowest settings but now its just sitting there

ok it randomly started working now thank you for your help :]

YoHoJo
03-27-2010, 08:51 PM
It would also be good to stop the animation of the background screen too. Glad you got it working, good luck!

bangali
03-28-2010, 08:06 PM
trying to use this but erm it says

[Runtime Error] : Out Of Range in line 116 in script D:\Documents and Settings\--------\Desktop\scarprerelease\YoHoJos PMS Release 1.04.scar

and im trying to use only 1 char and it is char 0 so i done start char 0 and only 1 player and the rest have put as active false.

Ty

YoHoJo
03-28-2010, 08:13 PM
If you are using just one character, then remove the extra lines
Like this:
http://villavu.com/forum/showpost.php?p=696106&postcount=446

You can just copy/paste that and overwrite the DeclarePlayers in the script with that ^

bangali
03-29-2010, 12:12 PM
Ty will try it but trying coh3ns power chopper atm :) to gt 60 wc but hope this is better! i will edit a proggy in soon or if its ok, ill do a new post with hopefully a long prog

radiclerobby
03-29-2010, 03:13 PM
yohojo get ready for a epic proggy i will be Suicide botting on a freshly made account to see how high i can get my minning level befor getting banned. i will try for 48 hour+ proggy will be back in 2-3 days with result

best reguards

~radiclerobby


ps your script is flawlessly amazing thanks ;)

edit: by the way im only using 1 account ;) wish me luck

YoHoJo
03-29-2010, 06:55 PM
:[ I hate suicide botting, its pointless and stupid IMO.
Just bot safely, keep the account, have something to be proud of/sell for profit at least.
But yeah, thanks for feedback and usage :D

DonnyB4e56
03-29-2010, 11:19 PM
I'm having the problem that was stated above with the bot just sitting at the login screen. I have no idea what to do, it's not just your script it's all of them. Is this a common problem? Sorry if it is.

Bionicle
03-29-2010, 11:22 PM
I'm having the problem that was stated above with the bot just sitting at the login screen. I have no idea what to do, it's not just your script it's all of them. Is this a common problem? Sorry if it is.

Try this:
http://villavu.com/forum/showthread.php?t=55899
:)

DonnyB4e56
03-29-2010, 11:42 PM
I've done all this, to no avail. Everything is updated to my knowledge.

i luffs yeww
03-30-2010, 01:16 AM
Donny, when you update SRL with subversion, what does it say the revision number is?
http://villavu.com/forum/showthread.php?t=47714

radiclerobby
03-30-2010, 01:30 AM
k well i guess no epic proggy then :\ but ill keep leveling and see how far i can get with your script 43 already didnt even take a hour

edit: i also got some suggestions to shorten up code

line 406-406 you have

If InRange(CountColorTolerance(ColStats[0], Q1, U1, Q2, U2, ColStats[1]), Count1, Count2) Then
Result:=True;

you can do this


result:= InRange(CountColorTolerance(ColStats[0], Q1, U1, Q2, U2, ColStats[1]), Count1, Count2)


also line 437 438 you have


if(invfull)then
result:=true;


you can have


result := invfull;


on line 699 - 701 you have


If (not(Players[CurrentPlayer].Integers[82]=0)) Then
If (Players[CurrentPlayer].Integers[82] Mod LoadsPerLogin)=0 Then
Result:=True;


you could do


result:= (not(Players[CurrentPlayer].Integers[82]=0)) and (Players[CurrentPlayer].Integers[82] Mod LoadsPerLogin)=0


There are alot more like this. it doesnt really make the code any more efficent but it makes it look alot cleaner and pro :)

Sgt Soul
03-30-2010, 07:27 AM
umm lvl 85 mining much???
THX so much YoHoJo you gave me 85 mining with no effort involved, much love for you!!! hehe <3

bangali
03-30-2010, 04:42 PM
tried this. before it logs in with user name comes up with this error

[Runtime Error] : Out Of Range in line 688 in script

any help

Ty

DonnyB4e56
03-31-2010, 12:30 AM
Donny, when you update SRL with subversion, what does it say the revision number is?
http://villavu.com/forum/showthread.php?t=47714

Worked, thanks a lot. Good to be back on the botting scene, next i'll try to write my own but for now i'll just get my mining up, thanks again!.

Frement
03-31-2010, 12:37 AM
There are alot more like this. it doesnt really make the code any more efficent but it makes it look alot cleaner and pro :)

I personally hate when people do that. I like clean code rather then that.


tried this. before it logs in with user name comes up with this error

[Runtime Error] : Out Of Range in line 688 in script

any help

Ty

Remember to set:
NumbOfPlayers= 5; //How many players are you using
to the number of players you have in your declare players.

If you only use one, then put that in there and delete all the others on lines 105-149.

Example:
NumbOfPlayers= 1; //How many players are you using
procedure DeclarePlayers;
var i:integer;
begin
NumberOfPlayers(NumbOfPlayers);
CurrentPlayer := StartPlayer;
for i := 0 to NumbOfPlayers-1 do
Players[i].BoxRewards := ['mote', 'ostume', 'XP', 'Gem', 'ithril', 'oal', 'une', 'oins'];

with Players[0] do
begin
Name := ''; //Player username.
Pass := ''; //Player password.
Nick := ''; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end;
end;

kas130771
03-31-2010, 12:47 AM
It works great, although, I did have some problems with dropping. Great script!!!!!!

K3n
03-31-2010, 10:09 AM
Not sure if it's the script problem or SRL but every time it take a break, the world always change. I set the SMART world but it always ignore my setting.

YoHoJo
03-31-2010, 10:17 AM
I think setting smart world only works for unsigned or signed (forgot which) or something odd.
Also, switching worlds when taking breaks, that's impossible :p! I have no world switching or anything of that sort built into the script.

i luffs yeww
04-03-2010, 01:30 AM
YoHoJo, it works for signed. He thinks it switches worlds because on the main screen it says the world, and SMART doesn't choose the correct world that you set it to, so he thinks it was changed. I think.

Corrothead
04-03-2010, 06:57 PM
Hi
I'm really excited to try out your script. But once I filled everything in, I got this error:

Successfully compiled (2231 ms)
SRL Compiled in 15 msec
STATS: "ERROR(1): Wrong username or password!"
[Runtime Error] : Out Of Range in line 116 in script C:\Users\xxxxxxx\Documents\SCAR 3.23 Beta\Scripts\RS Stuff\YoHoJos PMS Release 1.04.scar


This is where the error brings me in the script:

with Players[0] do
begin
Name := ''; //Player username.
Pass := ''; //Player password.
Nick := 'head'; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end;
with Players[1] do
begin
{{BRINGS ME HERE}} Name := ''; //Player username.
Pass := ''; //Player password.
Nick := ''; //Player nickname - 3-4 letters of Player username.
Active := False;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end;

I know how to write code in pascal a little bit, but I don't understand this error. I'm only using one player, so the part in the declare section looks like this:


NumbOfPlayers= 1; //How many players are you using
StartPlayer= 0; //Player to start auoting with! (0 means first char)

Hopefully you can figure it out :p

i luffs yeww
04-03-2010, 07:00 PM
Change DeclarePlayers to just having the stuff for with players[0] do blah blah blah.

Corrothead
04-03-2010, 07:51 PM
Thanks, I appreciate the help :)

i luffs yeww
04-03-2010, 07:59 PM
You left your user/pass in there by the way. Might wanna change it now.

Corrothead
04-03-2010, 08:21 PM
No I didn't?

YoHoJo
04-03-2010, 08:22 PM
I just edited and removed it for you Corrothead.

Sgt Soul
04-05-2010, 08:05 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 3 Hours, 28 Minutes and 47 Seconds
| Mined 2021 ores at a rate of 581 per hour
| Mined 73 loads at a rate of 20 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : min1 = T 0 00:00:00 0 0 0 L:
1 : min1 = F 81 01:09:50 277 10 9695 L:Cant Find Rock :(
2 : min1 = T 81 00:00:00 1744 63 61040 L:Mining
3 : min1 = T 0 00:00:00 0 0 0 L:
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

Just a quick run :) worked great.

A lot longer run :P



/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 8 Hours, 54 Minutes and 36 Seconds
| Mined 4509 ores at a rate of 506 per hour
| Mined 164 loads at a rate of 18 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : min1 = T 0 00:00:00 0 0 0 L:
1 : min1 = F 82 02:47:49 833 30 29155 L:Cant Find Rock :(
2 : min1 = F 82 12:06:16 2976 108 104160L:Cant Find Rock :(
3 : min1 = T 6553500:00:00 700 26 24500 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

Maxine
04-06-2010, 01:38 PM
is there way to run this script without using that smart window? just like normal script.. i havent been scripting for over year and im dont get along with this idiotic smart:D how can i turn smart off:D

i luffs yeww
04-06-2010, 01:49 PM
Maxine, press ctrl + f, type "misc/SMART" (without quotes) and then go to the beginning of that line (it will be {.include SRL/SRL/misc/SMART.scar}), and comment it out (simply add '//' (no apostrophes) to the beginning, so it will be //{.include SRL/SRL/misc/SMART.scar}). :) Hope that helps.

Maxine
04-06-2010, 02:29 PM
Maxine, press ctrl + f, type "misc/SMART" (without quotes) and then go to the beginning of that line (it will be {.include SRL/SRL/misc/SMART.scar}), and comment it out (simply add '//' (no apostrophes) to the beginning, so it will be //{.include SRL/SRL/misc/SMART.scar}). :) Hope that helps.

nice thanks! i thought removing it would effect the rest of the script but it didnt.. :)

Sgt Soul
04-07-2010, 04:57 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 6 Hours, 30 Minutes and 19 Seconds
| Mined 3959 ores at a rate of 608 per hour
| Mined 152 loads at a rate of 23 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : min1 = F 6553510:15:20 3097 120 108395L:Cant Find Rock :(
1 : min1 = F 83 00:40:37 215 8 7525 L:Cant Find Rock :(
2 : min1 = F 83 01:00:12 647 24 22645 L:Mining
3 : min1 = F 6553500:00:54 0 0 0 L:
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

Very good effort, stop running due to Molly fail :) not your fault of course, Still love it tho <3

EDIT: says it failed molly, but is still sitting at the mine :P

EDIT2:

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 5 Hours, 46 Minutes and 18 Seconds
| Mined 3638 ores at a rate of 630 per hour
| Mined 131 loads at a rate of 22 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : min1 = F 83 10:39:12 3388 122 118580L:Cant Find Rock :(
1 : min1 = F 83 00:00:19 0 0 0 L:Mining
2 : min1 = F 83 00:44:21 222 8 7770 L:Cant Find Rock :(
3 : min1 = F 83 00:03:26 28 1 980 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>


reason for stopping was a lag spike :(



/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 3 Hours, 10 Minutes and 9 Seconds
| Mined 1990 ores at a rate of 628 per hour
| Mined 72 loads at a rate of 22 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : min1 = T 0 00:00:00 0 0 0 L:
1 : min1 = F 84 05:47:07 1909 69 66815 L:Cant Find Rock :(
2 : min1 = T 84 00:00:00 81 3 2835 L:Mining
3 : min1 = T 0 00:00:00 0 0 0 L:
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>


another proggy :)



/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 6 Hours, 59 Minutes and 2 Seconds
| Mined 4159 ores at a rate of 595 per hour
| Mined 150 loads at a rate of 21 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : min1 = F 84 01:07:10 334 12 11690 L:Cant Find Rock :(
1 : min1 = F 84 07:47:38 3019 109 105665L:Mining
2 : min1 = F 84 00:24:49 83 3 2905 L:Cant Find Rock :(
3 : min1 = F 84 02:28:35 723 26 25305 L:Cant Find Rock :(
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>



Another proggy, does anyone else use this? or just me haha



/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 6 Hours, 33 Minutes and 59 Seconds
| Mined 3659 ores at a rate of 557 per hour
| Mined 132 loads at a rate of 20 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : min1 = T 0 00:00:00 0 0 0 L:
1 : min1 = F 84 11:43:14 3438 124 120330L:Cant Find Rock :(
2 : min1 = F 85 00:10:54 27 1 945 L:Mining
3 : min1 = T 85 00:00:00 194 7 6790 L:Mining


ANOTHER proggy, now 85 mining on the second account. I'll get it to 90 so it mines rune easier :)

thx YoHoJo <3

Coh3n
04-09-2010, 03:31 PM
Hey YoHoJo,

Here's a proggy I ran over night:


/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 8 Hours, 57 Minutes and 51 Seconds
| Mined 2429 ores at a rate of 270 per hour
| Mined 87 loads at a rate of 9 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : *** = T 27 02:30:33 671 24 11742.5L:Mining
1 : *** = T 27 02:20:25 669 24 11707.5L:Mining
2 : *** = T 27 02:03:16 642 23 11235 L:Mining
3 : *** = F 24 01:33:45 447 16 7822.5L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

I had to pause it as one character was standing in the maze clicking the wall. I'm assuming it thought the wall was the Tin? Not sure why that would happen because I'm assuming you use an uptext check. I'm also not sure how long he was sitting there, but the reward percent was at 0. :o

I'm also not sure why player 4 was inactive as he was still standing in the mine.

Anyway, I really like your dropping method, especially now it sometimes examines the ore. It's very human-like in my opinion. :)

This won't be the last time I use this. :)

trecool999
04-09-2010, 07:44 PM
Why is one of the tags for this, "14% gay"...?

Maxine
04-09-2010, 09:18 PM
YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 1 Hours, 7 Minutes and 10 Seconds
| Mined 480 ores at a rate of 431 per hour
| Mined 23 loads at a rate of 20 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : xxx = T xx 00:56:11 480 23 16800 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
Successfully executed



ececuted it myself.. alkharid mine, iron ore.. dam this script works smoothly.. sometimes need to restart once so it finds right rock color. otherwise no complains at all. all regards for you for making script this good for public!:)

Coh3n
04-09-2010, 10:36 PM
I just noticed it didn't detect the Quiz random. It just moved the mouse around the light (I'm assuming checking for uptext). You should have it logout if it can't find the uptext after a certain amount of tries. It may not be a bad idea to do a similar thing for when it can't find the rocks.

YoHoJo
04-09-2010, 10:42 PM
What? Quiz random is SRL's randoms, not me?
Also, yeah it logs out if it cant find a rock for 90 seconds.
Thanks for pointing out though that I need to change UpText Color check to normal UpText, I was just using that temporarily while uptext was broken.

Coh3n
04-09-2010, 10:45 PM
What? Quiz random is SRL's randoms, not me?
Also, yeah it logs out if it cant find a rock for 90 seconds.
Thanks for pointing out though that I need to change UpText Color check to normal UpText, I was just using that temporarily while uptext was broken.
Oops, I didn't complete my thought on the post above. :p I meant to write that you should have FindNormalRandoms in every possible spot that the script could encounter a random (after logging in, before dropping, during dropping, after dropping, etc.). Oh, and no problem. :D

E: Just watching it now, if it gets a reward from a random, it doesn't drop it in the next load. Maybe add the option to drop everything (except the pickaxe, of course).

YoHoJo
04-09-2010, 10:57 PM
Well, based on my feedback, the script actually finds randoms much more often times than other scripts, and I have tons of random checks in it too. What happened was, SRL THOUGHT it solved the quiz, but actually didnt click the portal, which is still ok, because the script logs out if it cant find a rock for 90 seconds, which it would do if it was stuck in a random.

And hmm yea good idea, I normally just like to make the script drop ONLY ORES in case people have something of value in their inventory, but yeah, a 'drop all but pickaxe' option would be good.

Coh3n
04-09-2010, 11:01 PM
Well, based on my feedback, the script actually finds randoms much more often times than other scripts, and I have tons of random checks in it too. What happened was, SRL THOUGHT it solved the quiz, but actually didnt click the portal, which is still ok, because the script logs out if it cant find a rock for 90 seconds, which it would do if it was stuck in a random.
So I've seen. It's hard for me to say exactly as I wasn't watching it when it happened. But when I started watching it, it was in the Quiz random, just moving the mouse around the light (which is a similar color to tin). This could go back to the uptext thing. :p Even though there isn't any rocks, it finds the color, thus still "finding" the rock, thus not logging out after 90 seconds. Having it logout if it can't find the uptext after a certain amount of tries is just like a failsafe to finding (but not actually finding) the rocks.

I hope that made sense... :p

YoHoJo
04-09-2010, 11:10 PM
Yeah I get it, it logs out if it doesnt CLICK a rock for 90 seconds, or at least it should.
And yeah, ill change the color finding to text finding, thanks for pointing out that I forgot to change it back since the uptext was fixed, odd. Thanks :]

Coh3n
04-09-2010, 11:13 PM
Yeah I get it, it logs out if it doesnt CLICK a rock for 90 seconds, or at least it should.
And yeah, ill change the color finding to text finding, thanks for pointing out that I forgot to change it back since the uptext was fixed, odd. Thanks :]
No problem. :)

Oh, another thing I just noticed. :p I think it was Nava to suggest this for my script. Have the script switch players after the set amount of loads +/- a certain amount.

YoHoJo
04-09-2010, 11:56 PM
Already have that done in the next version on my computer :D

Corrothead
04-10-2010, 12:17 AM
I'm level 68 mining at the moment. I really wanted to know what type of ore i should be mining if i am only concerned with leveling. I do not need to bank, and so i'm looking to drop all the ore. I see that this script is very popular but it only does up to iron. I just want to know if iron is what i SHOULD be mining for xp as opposed to coal or mith. And, what is the best scripting location for whatever ore you think is best. Thanks in advance.

Bionicle
04-10-2010, 12:19 AM
I'm level 68 mining at the moment. I really wanted to know what type of ore i should be mining if i am only concerned with leveling. I do not need to bank, and so i'm looking to drop all the ore. I see that this script is very popular but it only does up to iron. I just want to know if iron is what i SHOULD be mining for xp as opposed to coal or mith. And, what is the best scripting location for whatever ore you think is best. Thanks in advance.

Iron is the best f2p mining xp.
Granite is the only one that is better, but it is p2p.

Corrothead
04-10-2010, 01:01 AM
Thank you. I've been left in the dark about that for awhile now. The only question that remains is the best place to mine it. Thanks for your quick response.

Bionicle
04-10-2010, 01:04 AM
Thank you. I've been left in the dark about that for awhile now. The only question that remains is the best place to mine it. Thanks for your quick response.

Rimmington/dwarvin mines

Coh3n
04-10-2010, 02:08 AM
Already have that done in the next version on my computer :D
Excellent. :)


Rimmington/dwarvin mines
As long as those locations have 3+ rocks. With a higher mining level, you'll want at least that many.

E: Here's another proggy. I stopped in manually.


/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 4 Hours, 5 Minutes and 9 Seconds
| Mined 1246 ores at a rate of 304 per hour
| Mined 45 loads at a rate of 10 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : *** = T 32 01:02:56 334 12 5845 L:Mining
1 : *** = T 31 00:42:12 252 9 4410 L:Mining
2 : *** = T 33 01:14:40 336 12 5880 L:Mining
3 : *** = T 29 01:00:03 324 12 5670 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

Corrothead
04-10-2010, 02:13 AM
Thanks guys. That answers all my questions :D

Sebo
04-10-2010, 04:30 AM
First of all, this script is very, very good. I like it a lot.

I only have one (small) problem that I have been encountering, and I looked through the code, but could not find anything. When I set up only one player to run (I was only boosting the mining from 10-21, so i'd be watching it.) it would go to the 'next player' even when I set the script to only use one player. I set the loads to 10, and to do 10 loads before logging out. It stops after a couple of ores have been mined, and I am not sure if that's just a small human error by me, or the script itself is doing this. I am going to adjust some settings to see if it will work out, but i'm not sure it will help a whole lot.

Just some feedback, but overall, I am really loving this script. Quality work mate.

EDIT: It seems to be 'switching players' when I go from a window such as chrome, to SMART to check up on it, it's just a small glitch that won't really affect me. I guess I just can't really be switching windows, and just hope the script is working the way it should, which I am assuming it will be. :)

YoHoJo
04-10-2010, 05:25 AM
Sebo, yeah SMART is like that.

SMART flashes the rs client a white/black color every time you minimize/un-minimize it, which often times cause the script to believe something went wrong/you logged out/you encountered a random. So, you should just keep the script minimized, and trust it :], it has good failsafes.

In the constants there is an option called 'YoHoDebug' I believe, if you set that to true, SCAR will pop up a debug window every few seconds showing you what is going on on the RS screen, so set that to true if you wish to check up on how the script is going.

Glad you like it! :D

easyas4
04-10-2010, 06:05 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 11 Hours, 49 Minutes and 35 Seconds
| Mined 5742 ores at a rate of 486 per hour
| Mined 213 loads at a rate of 18 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : insc = F 55 03:12:13 1346 50 47110 L:Finished Loads!
1 : ames = F 51 02:58:09 890 33 31150 L:Cant Find Rock :(
2 : udki = F 51 02:59:31 1348 50 47180 L:Finished Loads!
3 : arel = F 50 01:08:57 296 11 10360 L:Cant Find Rock :(
4 : xmud = F 48 02:11:54 513 19 17955 L:Cant Find Rock :(
5 : olya = F 50 03:05:24 1349 50 47215 L:Finished Loads!
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
Worked great :D Had a few errors but they were just randoms not being solved (evil bobs island, quiz master, mordaut). Other than that it all worked fine.

When I first started using it though I used breaks but it would randomly take breaks before it was supposed to. Is it supposed to log out when it takes breaks?

And if so is it supposed to log into another player? Because it wouldnt log out or anything and then it would switch players after like 2 loads even though

I had them doing like 20 loads. Not sure whats up with that but without breaking it works like a charm :p

~Easy

Coh3n
04-10-2010, 04:18 PM
Just noticed that my scripts folder is spammed with screenshots. You should add an option to turn them off so this doesn't happen. Either that or have the script make a folder to put all the pictures in.

fireninga
04-11-2010, 02:09 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 7 Hours, 46 Minutes and 8 Seconds
| Mined 2612 ores at a rate of 336 per hour
| Mined 96 loads at a rate of 12 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : pig = F 33 02:38:28 937 34 16397.5L:Mining
1 : rche = T 6553502:30:24 852 32 14910 L:Mining
2 : oopd = F 44 01:44:12 599 22 10482.5L:Mining
3 : oopd = F 23 01:22:13 224 8 3920 L:Cant Find Rock :(
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
Successfully executed

Great script. I like how it logs out when it logs out quickly when it gets stuck in a random or gets lost.

ASIDE: 2 of my characters got stuck in a random and it didn't solve either.

Foresters Missed : 1
Molly's Missed : 1

Sgt Soul
04-11-2010, 09:11 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 5 Hours, 36 Minutes and 8 Seconds
| Mined 3414 ores at a rate of 604 per hour
| Mined 123 loads at a rate of 21 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : min1 = F 86 02:27:13 779 28 27265 L:Cant Find Rock :(
1 : min1 = F 86 03:38:49 1056 38 36960 L:Cant Find Rock :(
2 : min1 = T 86 00:04:33 1049 38 36715 L:Mining
3 : min1 = F 86 01:40:34 530 19 18550 L:Cant Find Rock :(
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>


Very nice once again :)

easyas4
04-12-2010, 03:03 AM
still working great! ive had alot of good progress reports but none good as my last. they are all almost level 60. Great script :) oh yeah. question, in the tags listed for this thread why does it say 14% gay? thats pretty dern random

i luffs yeww
04-12-2010, 03:08 AM
oh yeah. question, in the tags listed for this thread why does it say 14% gay? thats pretty dern random

YoHoJo is 14% gay.

By the way, I had a 24 something hour proggy but my mom turned off my computer. :<

Sgt Soul
04-15-2010, 09:38 PM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 7 Hours, 44 Minutes and 10 Seconds
| Mined 3380 ores at a rate of 435 per hour
| Mined 126 loads at a rate of 16 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : numb = F 6553500:00:30 0 0 0 L:
1 : numb = F 50 00:37:38 241 9 8435 L:Mining
2 : numb = F 51 07:29:53 1669 62 58415 L:Cant Find Rock :(
3 : numb = F 55 03:19:57 1470 55 51450 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL 38 Randoms Report |
| www.villavu.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| SRL Logs : 1 |
| Lamps Solved : 2 |
| Mimes Missed : 2 |
| ScapeRunes Solved : 1 |
| Leo's Solved : 1 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/



/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 3 Hours, 40 Minutes and 52 Seconds
| Mined 2324 ores at a rate of 628 per hour
| Mined 90 loads at a rate of 24 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : min1 = T 0 00:00:00 0 0 0 L:
1 : min1 = T 88 00:00:00 2324 90 81340 L:Mining
2 : min1 = T 0 00:00:00 0 0 0 L:
3 : min1 = T 0 00:00:00 0 0 0 L:
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

solid runs from both clients :)

fireninga
04-17-2010, 02:25 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 6 Hours, 7 Minutes and 20 Seconds
| Mined 1985 ores at a rate of 324 per hour
| Mined 72 loads at a rate of 11 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : pig = F 6553501:26:54 419 15 7332.5L:Login Failed
1 : rche = F 41 03:25:54 871 32 15242.5L:Cant Find Rock :(
2 : oopd = F 47 01:39:43 499 18 8732.5L:Cant Find Rock :(
3 : oopd = F 36 00:42:34 196 7 3430 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~

Two got stuck in randoms and i don't know what happened to the others.

Edit1: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 6 Hours, 57 Minutes and 47 Seconds
| Mined 2141 ores at a rate of 307 per hour
| Mined 77 loads at a rate of 11 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : pig = T 45 02:29:59 827 30 14472.5L:Mining
1 : rche = T 41 01:14:17 420 15 7350 L:Mining
2 : oopd = F 47 00:02:48 0 0 0 L:Mining
3 : pdose = T 41 02:58:22 894 32 15645 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~

No randoms, manually stopped! :D

Edit2:
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~
| Worked for 4 Hours, 4 Minutes and 6 Seconds
| Mined 1218 ores at a rate of 299 per hour
| Mined 44 loads at a rate of 10 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~
# : Nick = A : Level Worked Mined Loads XP Location
0 : pig = T 48 00:57:29 140 5 4900 L:Mining
1 : rche = T 44 01:34:01 417 15 14595 L:Mining
2 : oopd = T 49 00:09:42 56 2 1960 L:
3 : pdose = F 45 01:18:34 438 16 15330 L:Mining
4 : luff = T 42 01:00:03 167 6 5845 L:Mining

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 20 Hours, 42 Minutes and 53 Seconds
| Mined 4523 ores at a rate of 218 per hour
| Mined 165 loads at a rate of 7 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : pig = T 51 04:58:10 1234 45 43190 L:Mining
1 : rche = F 48 11:35:14 965 35 33775 L:Cant Find Rock :(
2 : oopd = T 50 02:17:33 578 21 20230 L:Cant Find Rock :(
3 : pdose = F 49 01:58:29 658 24 23030 L:Mining
4 : luff = F 48 04:01:25 1088 40 38080 L:Cant Find Rock :(
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

Stopped because it wouldn't log in.
I don't know why the one character went for 11 hours. :/

Sgt Soul
04-17-2010, 07:56 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 4 Hours, 23 Minutes and 53 Seconds
| Mined 2383 ores at a rate of 539 per hour
| Mined 93 loads at a rate of 21 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : min1 = F 88 03:19:04 1005 39 35175 L:Cant Find Rock :(
1 : min1 = F 88 00:18:38 156 6 5460 L:Mining
2 : min1 = F 88 00:47:25 208 8 7280 L:Cant Find Rock :(
3 : min1 = F 88 04:01:39 1014 40 35490 L:Cant Find Rock :(
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

Lagged out, was going very well :)

A Random Guy
04-18-2010, 10:22 PM
Thanks for the script. Seems to work pretty well while it's running, but it has just stopped randomly a few times. It wasn't lost or anything, and there was no message about why it stopped. Breaks are off, by the way.

Frement
04-18-2010, 10:41 PM
Thanks for the script. Seems to work pretty well while it's running, but it has just stopped randomly a few times. It wasn't lost or anything, and there was no message about why it stopped. Breaks are off, by the way.

To which position did it stop? I think it would help YoHoJo.

A Random Guy
04-18-2010, 10:49 PM
To which position did it stop? I think it would help YoHoJo.

What do you mean "to which position"? It was just standing there next to the rock, if that's what you mean.

i luffs yeww
04-18-2010, 10:50 PM
That is what he meant. :p Does it happen after dropping ores?

A Random Guy
04-18-2010, 11:21 PM
Okay, I found the problem. After Windows put the display to sleep, the bot stopped when I moved the mouse and woke it up. I'm pretty sure it was working while it was off. I'm using SMART, so I'm not really sure why that happens. Also, this sounds more like a problem with SCAR than the script, although I don't remember having this problem with any other scripts.

Is this a known problem, or should I report it somewhere else?

EDIT: Actually, I'm pretty sure that it stops when I restore the SMART window after minimizing it, although I don't think it happens every time. I'll try a few more times, see if that's what it is for sure.

i luffs yeww
04-18-2010, 11:53 PM
That's nothing that can be fixed, really. You're just losing the client when you turn the display back on. It happens to me, too.

A Random Guy
04-19-2010, 12:09 AM
That's nothing that can be fixed, really. You're just losing the client when you turn the display back on. It happens to me, too.

I tried again, and it's definitely from minimizing SMART, and not from the display going to sleep. I minimized and restored the window a few times, and after 5 or so times the script just stopped with no error message or anything.

YoHoJo
04-19-2010, 12:22 AM
Yeah A Random Guy, that 'problem' has been addressed many times, when you minimize/un-minimize SMART it makes the screen go black/white for a second, making the script thing something screwed up and set your player to false. So just run the script, minimize smart, and let it go. You can also set the 'YoHoDebug' option to true and scar will pop up a little window every few seconds showing you what's going on on the screen.

Open Script
Click Play
After SMART Pops up Click Stop
Let Runescape Load
Minimize SMART
Click Play on Scar
Let it run and be happy. :]

i luffs yeww
04-19-2010, 12:22 AM
It's the same idea. The window goes blank, and so nothing is found, so the script ends. Same thing when you open/close a laptop to display it.

A Random Guy
04-19-2010, 12:30 AM
Okay, thanks both of you. Great script by the way, it's working flawlessly besides that. I'll post some proggies after a few hours of running it.

YoHoJo
04-19-2010, 01:48 AM
I know a bunch of you have already posted tons of progress reports and feedback on what you would like to see in the next update, and thanks a lot for that. A few weeks ago I went though the last 10+ pages and tried to ensure all of your suggestions were taken into account so I can implement them in the new version but...

Just in case I forgot something, or you haven't suggested it yet, or you guys have gotten some new ideas for the script, could everyone please just throw out any and all suggestions you have that you would like to see in version 1.05? Thanks!

Awkwardsaw
04-19-2010, 01:51 AM
I know a bunch of you have already posted tons of progress reports and feedback on what you would like to see in the next update, and thanks a lot for that. A few weeks ago I went though the last 10+ pages and tried to ensure all of your suggestions were taken into account so I can implement them in the new version but...

Just in case I forgot something, or you haven't suggested it yet, or you guys have gotten some new ideas for the script, could everyone please just throw out any and all suggestions you have that you would like to see in version 1.05? Thanks!

oh god. this is going to be epic. :)

payton
04-19-2010, 03:11 AM
jump to a random player rather then a cycle that repeats. do a random number of loads between a high and a low set by the user.

can't wait!

Payton

i luffs yeww
04-19-2010, 03:47 AM
Yo, YoHoJo, I'm really happy for you and ima let you finish your script, but NextPlayer(Random(HowManyPlayers)) and LoadsToDo := RandomRange(Loads / 2, Loads * 2) are the best ways to do ^ of all time.

A Random Guy
04-19-2010, 08:11 PM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 6 Hours, 1 Minutes and 3 Seconds
| Mined 3417 ores at a rate of 567 per hour
| Mined 264 loads at a rate of 43 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : xxxx = F 67 06:00:26 3417 264 119595L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>


Works great. The loads/hour shouldn't be that high, my inventory was half full of gems when I stopped the script.

Sgt Soul
04-20-2010, 08:43 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 2 Hours, 20 Minutes and 56 Seconds
| Mined 1446 ores at a rate of 615 per hour
| Mined 52 loads at a rate of 22 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : min1 = T 0 00:00:00 0 0 0 L:
1 : min1 = F 89 02:20:29 1446 52 50610 L:Mining
2 : min1 = T 0 00:00:00 0 0 0 L:
3 : min1 = T 0 00:00:00 0 0 0 L:
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>


Stopped manual, just to finish to lvl 90 mining :)

enig.ma
04-20-2010, 10:35 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 10 Hours, 31 Minutes and 16 Seconds
| Mined 3104 ores at a rate of 294 per hour
| Mined 120 loads at a rate of 11 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : 6= F 61 02:05:16 808 30 28280 L:Finished Loads!
1 : 6= F 31 03:30:09 839 30 14682.5L:Finished Loads!
2 : 6= F 30 02:58:24 689 30 12057.5L:Finished Loads!
3 : 6= F 29 02:43:11 768 30 13440 L:Finished Loads!
4 : 6= F 6 00:00:21 0 0 0 L:
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
Successfully executed



beautiful script. As someone suggested up there, randomize character which will login, and randomize the number of loads before logging out!

Thanks for the script.

Frement
04-20-2010, 10:59 AM
You know YoHoJo, its not that hard to add player shuffling :)
function NextPlayerEx(Active: Boolean): Boolean;
begin
if not (AllPlayersInactive) then begin
if (ShufflePlayers) then begin
RandomNextPlayer(Active);
Result := True;
end else begin
NextPlayer(Active);
Result := True;
end;
end else begin
ScriptTerminate;
end;
end;
and a const
ShufflePlayers = True; //Randomly select next player.
and then just replace all NextPlayer( with NextPlayerEx( :) Thats what i did for my script.

YoHoJo
04-22-2010, 07:10 AM
Ugggh I know guys, why does everyone keep thinking that I think its 'hard' to add/remove random loads/random player switching? :]

In fact I can just change some line to like NextPlayer(NextPlayerIndex) and that will solve the random player switching :].


So, besides random loads/player switching, and me trying to fix some of the false "Can't Find Rock" errors, anything else?

Also, thank you to everyone for using the script, as you can see from the stats it seems to still be running hard and long and strong! Thanks for all of the awesome feedback and usage!

enig.ma
04-22-2010, 01:58 PM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 24 Hours, 34 Minutes and 32 Seconds
| Mined 7022 ores at a rate of 285 per hour
| Mined 279 loads at a rate of 11 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : 6= T 65 03:28:09 1429 53 50015 L:Mining
1 : 6 = T 51 09:39:16 1802 67 63070 L:Mining
2 : 6= T 45 05:19:53 1846 84 32305 L:Mining
3 : 6= T 45 05:13:57 1945 75 34037.5L:Mining
4 : 6= F 0 00:00:00 0 0 0 L:
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>




YoHoJo, what about implementing it such that after a certain number of loads S.M.A.R.T will choose a different world to play on? I have gotten a number of people remembering me/my name.

YoHoJo
04-23-2010, 07:58 AM
24 Hour, sweet, those are always nice. And alright, as long as worldswitcher.scar is working that should be easy enough, thanks!

Press Play
04-24-2010, 07:14 AM
First run :)


/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 27 Minutes and 47 Seconds
| Mined 135 ores at a rate of 297 per hour
| Mined 5 loads at a rate of 11 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : xxx = F 57 00:20:47 135 5 4725 L:Mining
1 : xxx = F 6553500:01:47 0 0 0 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
Successfully executed

First of all, player 0 encountered a random:

***** STR: FOUND RANDOM: 'Surprise Exam' *****
***** STR: 'Surprise Exam' RANDOM SOLVING FAILED! *****

An second... it shows player 1 to be level '65535' in mining? hahaha :P lol, dunno what happened there. It stopped for no apparent reason.

Lastly, I like your script :) Good work. Will test agian soon.

EDIT: oh yerr, and also I've been having problems with the stats. It says "wrong username or password". but I've checked several times and it is correct. I've folleded all the steps and stuff to; signed up etc. It also happens in another script I used which has stats. Any ideas? Thanks

YoHoJo
04-24-2010, 07:17 AM
Yeah the surprise exam random is sill buggy I think, so its hit or miss weather or not SRL solves it.
As for improper mining level, it really doesn't effect the running of the script, just some silly bug in SRL.
As for stopping for no reason, yea, that kinda happens rarely, it's annoying and I try to make it happen less and less every version.

Thanks for trying it out and the feedback, go for another run, maybe with more characters too if you have more, a tip for longer runs is to just leave smart minimized the entire time, as messing with (minimizing/unminimizing) smart too much screws up the script.

Good Luck on a longer report, woo woo!

enig.ma
04-24-2010, 03:52 PM
First run :)


/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 27 Minutes and 47 Seconds
| Mined 135 ores at a rate of 297 per hour
| Mined 5 loads at a rate of 11 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : xxx = F 57 00:20:47 135 5 4725 L:Mining
1 : xxx = F 6553500:01:47 0 0 0 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
Successfully executed

First of all, player 0 encountered a random:

***** STR: FOUND RANDOM: 'Surprise Exam' *****
***** STR: 'Surprise Exam' RANDOM SOLVING FAILED! *****

An second... it shows player 1 to be level '65535' in mining? hahaha :P lol, dunno what happened there. It stopped for no apparent reason.

Lastly, I like your script :) Good work. Will test agian soon.

EDIT: oh yerr, and also I've been having problems with the stats. It says "wrong username or password". but I've checked several times and it is correct. I've folleded all the steps and stuff to; signed up etc. It also happens in another script I used which has stats. Any ideas? Thanks


Your problem is that you have written your username, but it needs your userID ;)

Press Play
04-25-2010, 12:49 AM
Your problem is that you have written your username, but it needs your userID ;)

OMG :| THANKYOU SO MUCH! :duh:

Bebe
04-25-2010, 05:37 AM
Is it just me or does the mouse speed seem a bit ridiculous. Tone it down a bit. so unhuman

Press Play
04-25-2010, 08:48 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 58 Minutes and 44 Seconds
| Mined 405 ores at a rate of 413 per hour
| Mined 15 loads at a rate of 15 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : xxx = F 58 00:03:55 27 1 945 L:Mining
1 : xxx = F 58 01:40:58 378 14 13230 L:Cant Find Rock :(
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

Player 0 got lost in a random. I forget which one :S
Player 1 could not find ore but DID NOT get into a random. Maybe another player came and started mining the ore? Maybe you could make it change worlds? And also Player 1 has mining level of only 36.

Cozmoz
04-25-2010, 06:07 PM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 41 Minutes and 23 Seconds
| Mined 351 ores at a rate of 509 per hour
| Mined 13 loads at a rate of 18 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : xxx = T 42 00:00:00 351 13 12285 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>


Just a quick run and I stopped it manually.

fireninga
04-27-2010, 06:42 PM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 7 Hours, 24 Minutes and 26 Seconds
| Mined 2910 ores at a rate of 393 per hour
| Mined 105 loads at a rate of 14 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : enis = T 52 01:33:51 237 9 8295 L:Mining
1 : rche = T 50 01:08:18 445 16 15575 L:Mining
2 : oopd = T 51 02:29:00 391 14 13685 L:Mining
3 : pdose = F 52 02:44:31 1001 36 35035 L:Mining
4 : luff = T 50 01:26:44 836 30 29260 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~

Mining iron i don't know why it stopped, lag I think.

YoHoJo
04-28-2010, 07:23 AM
I know a bunch of you have already posted tons of progress reports and feedback on what you would like to see in the next update, and thanks a lot for that. A few weeks ago I went though the last 10+ pages and tried to ensure all of your suggestions were taken into account so I can implement them in the new version but...

Just in case I forgot something, or you haven't suggested it yet, or you guys have gotten some new ideas for the script, could everyone please just throw out any and all suggestions you have that you would like to see in version 1.05? Thanks!

:] Just asking again (Yes I have already implemented random loads/players, anything else you want?)

Reshintoe
04-28-2010, 07:11 PM
okay so I'm getting abit of a weird error/glitch, the script works just fine it mines ore and drops it, but for some reasson it clicks a rock, then clicks the music tab then the inventory, then the next rock, and so on, and it does the same thing when dropping, it will drop click music then invetory, is there a reasson for this? I've been able to repeat this over and over. and I just updated my SRL an hour ago.

YoHoJo
04-28-2010, 07:14 PM
Reshintoe, read this:
http://villavu.com/forum/showpost.php?p=706024&postcount=271

i luffs yeww
05-02-2010, 10:53 PM
:) I've a 15 hour plus progress report on my laptop. I'll post it when I can. Great script, and I can't wait to see what you've added!



/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 15 Hours, 27 Minutes and 13 Seconds
| Mined 7008 ores at a rate of 448 per hour
| Mined 261 loads at a rate of 16 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : ore = T 55 04:13:47 1858 69 32515 L:Mining
1 : ore = T 52 04:18:24 2076 77 36330 L:Mining
2 : ore = T 53 04:40:40 2074 77 36295 L:Mining
3 : ore = T 51 02:03:47 1000 38 17500 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
Successfully executed


It ended because I passed out and my mom turned off the Internet. The reason that the last player has much less time and loads than the others is because I forgot to change him to true with SMS. Ran great.



/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 39 Hours, 46 Minutes and 6 Seconds
| Mined 22340 ores at a rate of 466 per hour
| Mined 830 loads at a rate of 17 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : ore = T 59 17:12:56 4996 186 87430 L:Mining
1 : ore = T 61 18:40:04 10542 391 184485L:Mining
2 : ore = T 58 08:20:35 5050 188 88375 L:Mining
3 : ore = F 54 03:03:38 1752 65 30660 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>


Still going strong. :)



/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 47 Hours, 21 Minutes and 51 Seconds
| Mined 26787 ores at a rate of 483 per hour
| Mined 995 loads at a rate of 17 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : ore = F 59 18:03:40 5347 199 93572.5L:Cant Find Rock :(
1 : ore = F 62 22:54:36 13020 483 227850L:Mining
2 : ore = F 59 11:01:44 6668 248 116690L:Cant Find Rock :(
3 : ore = F 54 03:03:38 1752 65 30660 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
Successfully executed


:( aww..

mastaraymond
05-11-2010, 11:36 AM
Was mining at this epic rate, when a Demon came in.. Solved the demon; but still said it failed for the random (should be fixed in SRL-SVN now)



[0:54:00]: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
[0:54:00]: | --> YoHoJos PMS 1.04 <-- |
[0:54:00]: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
[0:54:00]: | Worked for 54 Minutes and 0 Seconds
[0:54:00]: | Mined 671 ores at a rate of 745 per hour
[0:54:00]: | Mined 24 loads at a rate of 26 per hour
[0:54:00]: <~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

Bebe
05-11-2010, 03:09 PM
@i luffs yeww: Awesome progress, you know you can fix players and reactivate them through stats right? Or did you just walk away and come back to that :p :(

@Ray: Wow that's fast.

i luffs yeww
05-12-2010, 01:16 AM
:) I know, Bebe. I was checking SMS every few hours (as they're level threes that I've never played legit on, thus they get many randoms), I just had bad luck when I was at school and got randoms on all of them. D:

Awkwardsaw
05-12-2010, 02:18 AM
when is 1.05 coming out? <3

Bebe
05-12-2010, 03:36 PM
When YohoJo stops being lazy :p

YoHoJo
05-12-2010, 04:45 PM
When YohoJo stops being lazy :p

:redface: Yeah, I suck :(. Sorry I've been teasing you all so much, v 1.05 is/was being worked on, just not complete yet, and I'm busy! :D

Sgt Soul
05-18-2010, 06:07 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 8 Hours, 29 Minutes and 3 Seconds
| Mined 4475 ores at a rate of 527 per hour
| Mined 160 loads at a rate of 18 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : mony = F 6553506:09:33 1649 59 57715 L:Cant Find Rock :(
1 : mony = F 49 01:22:32 755 27 26425 L:Mining
2 : mony = F 51 02:15:09 1176 42 41160 L:Mining
3 : mony = F 54 01:45:23 895 32 31325 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>


I don't think your Lazy YoHoJo. You have given my characters many mining levels ;)

YoHoJo
05-18-2010, 06:09 AM
Nice, once again thanks for using the script so much. Why are the last 3 false :'(?

i luffs yeww
05-18-2010, 06:12 AM
^ They're all false. :p

Sgt Soul
05-18-2010, 06:19 AM
It is because sometimes lagg causes my players to go false. So to stop this I made all my characters the same user :) well it works better for me that way anywho :D

YoHoJo
05-18-2010, 07:02 AM
Oh yeah Mr. Shitty Internet.
and Luffs, top one has a reason for false, bottom ones didn't.

Sgt Soul
05-18-2010, 07:30 AM
hey!!! my internet isn't shit!!! Its my wireless card haha :P I am getting a wireless M card soon tho, then I could run in 600000 hours straight!! ;) haha

EDIT:

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 6 Hours, 20 Minutes and 56 Seconds
| Mined 3299 ores at a rate of 515 per hour
| Mined 118 loads at a rate of 18 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : mony = F 6553500:00:24 0 0 0 L:
1 : mony = F 59 02:34:54 1286 46 45010 L:Mining
2 : mony = F 60 00:43:10 363 13 12705 L:Mining
3 : mony = F 6553502:50:50 1650 59 57750 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>


Still amazing run :) <3



/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 12 Hours, 44 Minutes and 52 Seconds
| Mined 6679 ores at a rate of 523 per hour
| Mined 244 loads at a rate of 19 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : mony = F 71 00:06:18 11 1 385 L:Mining
1 : mony = F 68 05:56:19 3353 120 117355L:Mining
2 : mony = F 69 06:00:45 3072 114 107520L:Mining
3 : mony = F 71 00:39:41 243 9 8505 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>


Evil bob failed :(

EDIT2:


/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 11 Hours, 44 Minutes and 50 Seconds
| Mined 6992 ores at a rate of 595 per hour
| Mined 316 loads at a rate of 26 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : mina = T 90 00:00:00 788 41 27580 L:Mining
1 : mina = F 89 08:44:52 2769 111 96915 L:Cant Find Rock :(
2 : mina = F 6553500:02:33 0 0 0 L:
3 : mina = F 89 06:00:58 3435 164 120225L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>


Felt as if I should stop manually as it was going way to well :) haha ps second acocunt to lvl 90 mining, I am going for lvl 99 for this one I reckon.

EDIT(again):

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 19 Hours, 22 Minutes and 3 Seconds
| Mined 11917 ores at a rate of 615 per hour
| Mined 689 loads at a rate of 35 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : mina = F 6553504:47:25 3144 132 110040L:Mining
1 : mina = F 90 06:00:16 3778 158 132230L:Mining
2 : mina = F 90 03:13:42 1822 102 63770 L:Mining
3 : mina = F 6553520:12:46 3173 297 111055L:Login Failed
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

I felt it had to be posted, kinda suicided the character :S, amazing proggy tho haha

locie archer
06-03-2010, 09:17 AM
why doesnt it work. it just sits on the login page and does nothing

Press Play
06-03-2010, 12:00 PM
why doesnt it work. it just sits on the login page and does nothing

If you gave us more information, maybe we could help :)
Make sure you have the latest SRL, SCAR 3.23 etc.

locie archer
06-03-2010, 03:31 PM
Ok. I run the file. Wait for it to load. Then when it comes to the page that says demo, free users and members, it just stops and does nothing. Please help.

mysterious123
06-03-2010, 06:20 PM
Ok. I run the file. Wait for it to load. Then when it comes to the page that says demo, free users and members, it just stops and does nothing. Please help.

Update your SRL to the newest version.

dikkidu
06-08-2010, 01:57 PM
Awesome script! Thanks man, very appreciated. Works very well.

I'll add the progress report later. :)

Edit: This is one of the best reports so far. I'm using only one character...


| Worked for 1 Hours, 55 Minutes and 49 Seconds
| Mined 760 ores at a rate of 393 per hour
| Mined 30 loads at a rate of 15 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : lib = T 67 01:52:31 760 30 26600 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

Edit2: I'm mining at Al Kharid's.

YoHoJo
06-12-2010, 01:51 AM
SCAR 3.25 PRE ALPHA Is Out!

(I'm not sure if it even works at all, maybe it doesn't yet? Lawl If not then disregard this post)

Update your SCAR SVNed folder to get it, or see here:
http://villavu.com/forum/showthread.php?t=57340

Please use PMS with and YOU MONITOR IT WHILE IT RUNS and let Freddy know anything that needs to be fixed!

Post anything you need to let him know here:
http://villavu.com/forum/showthread.php?t=57340

Ogre
06-12-2010, 01:54 AM
Umm, I may be wrong, but the way he said it sounds like he isn't really looking for bugs (yet), and it's not going to function properly because he's just started developing. It probably wouldn't be a good idea to use it yet.

ffcfoo
06-12-2010, 11:19 PM
Alright, Hello! I got this error here whenever I use this. SMART Compiles succesfully and so it is loading loading then when it is done loading it is at the screen to press the login button and all that. Okay so it doesn't do anything so I checked the debug box in scar and it said this error


[Runtime Error] : Out Of Range in line 116 in script C:\Documents and Settings\Presario\Desktop\SCAR 3.23\Scripts\YoHoJos PMS Release 1.04.scar

The line 116 in the script says this:


Name := ''; //Player username.

Okay so I found out that everytime I set this line:


NumbOfPlayers= 1; //How many players are you using

To any number like for example: "NumbOfPlayers= 3;" the error in the debug box would be:


[Runtime Error] : Out Of Range in line 134 in script C:\Documents and Settings\Presario\Desktop\SCAR 3.23\Scripts\YoHoJos PMS Release 1.04.scar

Now it says there is a problem with line 134 which is this:


Name := ''; //Player username.

Okay so that name was for [3] of the declare players the first one was [1]. So, I do not no if this is me or the script but who knows. Here is my setup.


Const
YourStatsUserID = ''; //User ID from scriptmanager.freehostia.com
YourStatsPass = ''; //Your pass from scriptmanager.
NumbOfPlayers= 1; //How many players are you using
StartPlayer= 0; //Player to start auoting with! (0 means first char)
LoadsPerLogin= 25; //How Many Loads To Do Per Login!
LoadsTotal= 30; //How Many Total Lods To Do Per Character!
World= 102; //Server to log into, if you are using SMART.
SSigned= True; //True for singed, False for unsigned client;
DropGems= True; //Drop Gems?(They are useless!)
SleepyWeepie= 13; //Minutes to wait before logging in again.0 = Disabled.
YDebug= False; //Shows whats happening on the runescape screen in a
//debug window, so you dont have to open/close SMART.
Version= '1.04'; //NO TOUCHY!

{************************************************* ******************************
procedure DeclarePlayers;
By: SRL
Description: SRL's Player Setup
************************************************** *****************************}
procedure DeclarePlayers;
var i:integer;
begin
NumberOfPlayers(NumbOfPlayers);
CurrentPlayer := StartPlayer;
for i := 0 to NumbOfPlayers-1 do
Players[i].BoxRewards := ['mote', 'ostume', 'XP', 'Gem', 'ithril', 'oal', 'une', 'oins'];

with Players[0] do
begin
Name := '*****'; //Player username.
Pass := '********'; //Player password.
Nick := '***'; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 1; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end;
with Players[1] do
begin
Name := ''; //Player username.
Pass := ''; //Player password.
Nick := ''; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end;
with Players[2] do
begin
Name := ''; //Player username.
Pass := ''; //Player password.
Nick := ''; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end;
with Players[3] do
begin
Name := ''; //Player username.
Pass := ''; //Player password.
Nick := ''; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end;
with Players[4] do
begin
Name := ''; //Player username.
Pass := ''; //Player password.
Nick := ''; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end;
end;

Help is appreciated :D

Edit: This is probably because I am using the new scar.

i luffs yeww
06-12-2010, 11:24 PM
Const
YourStatsUserID = ''; //User ID from scriptmanager.freehostia.com
YourStatsPass = ''; //Your pass from scriptmanager.
NumbOfPlayers= 1; //How many players are you using
StartPlayer= 0; //Player to start auoting with! (0 means first char)
LoadsPerLogin= 25; //How Many Loads To Do Per Login!
LoadsTotal= 30; //How Many Total Lods To Do Per Character!
World= 102; //Server to log into, if you are using SMART.
SSigned= True; //True for singed, False for unsigned client;
DropGems= True; //Drop Gems?(They are useless!)
SleepyWeepie= 13; //Minutes to wait before logging in again.0 = Disabled.
YDebug= False; //Shows whats happening on the runescape screen in a
//debug window, so you dont have to open/close SMART.
Version= '1.04'; //NO TOUCHY!

{************************************************* ******************************
procedure DeclarePlayers;
By: SRL
Description: SRL's Player Setup
************************************************** *****************************}
procedure DeclarePlayers;
var i:integer;
begin
NumberOfPlayers(NumbOfPlayers);
CurrentPlayer := StartPlayer;
for i := 0 to NumbOfPlayers-1 do
Players[i].BoxRewards := ['mote', 'ostume', 'XP', 'Gem', 'ithril', 'oal', 'une', 'oins'];

with Players[0] do
begin
Name := '*****'; //Player username.
Pass := '********'; //Player password.
Nick := '***'; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 1; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end;
end;


The number of players have to be matched up.

YoHoJo
06-12-2010, 11:24 PM
If you're just using one player, get rid of the extra lines not needed, like this:

{************************************************* ******************************
procedure DeclarePlayers;
By: SRL
Description: SRL's Player Setup
************************************************** *****************************}
procedure DeclarePlayers;
var i:integer;
begin
NumberOfPlayers(NumbOfPlayers);
CurrentPlayer := StartPlayer;
for i := 0 to NumbOfPlayers-1 do
Players[i].BoxRewards := ['mote', 'ostume', 'XP', 'Gem', 'ithril', 'oal', 'une', 'oins'];

with Players[0] do
begin
Name := '*****'; //Player username.
Pass := '********'; //Player password.
Nick := '***'; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 1; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end;
end;

If you read back a few pages there are examples of how to do that.

ffcfoo
06-13-2010, 12:01 AM
Alright thanks. It all works now, One more thing. http://scriptmanager.freehostia.com/index.php is being really slow. It wont even go to website it would sit forever. Is it the website or me?

YoHoJo
06-13-2010, 12:02 AM
Website goes down a lot for a few minutes, it's normal.

ffcfoo
06-13-2010, 12:06 AM
Website goes down a lot for a few minutes, it's normal.

Im trying to get to the register page and it is taking forever!

YoHoJo
06-13-2010, 12:07 AM
Because it's probably down, just try again later :].

ffcfoo
06-13-2010, 12:08 AM
Because it's probably down, just try again later :].

I can see why it is down. Updating all those stats lol.

EDIT: How come the script takes breaks so fast? was like 5 mins then it started breaking for 711s.

i luffs yeww
06-13-2010, 12:15 AM
SleepyWeepie= 13; //Minutes to wait before logging in again.0 = Disabled.

Increase or disable it.

ffcfoo
06-13-2010, 12:19 AM
SleepyWeepie= 13; //Minutes to wait before logging in again.0 = Disabled.

Increase or disable it.

Ahh I see :duh:. So if I go in varrock and mine, does it bank? Right now I am in lumber bridge near the swamp at the mines mining.

EDIT:
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 6 Minutes and 59 Seconds
| Mined 28 ores at a rate of 248 per hour
| Mined 1 loads at a rate of 8 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : *** = T 10 00:00:00 28 1 490 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 10 Minutes and 25 Seconds
| Mined 28 ores at a rate of 164 per hour
| Mined 1 loads at a rate of 5 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : *** = F 10 00:09:49 28 1 490 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
Successfully executed


It automaticly executed it's self? Why did it do that? It was running for only 8 mins and the sleepweepy thing was set to 0

i luffs yeww
06-13-2010, 12:29 AM
It doesn't bank, and I'm not sure why it'd end. It's an error, for sure.

ffcfoo
06-13-2010, 12:31 AM
It doesn't bank, and I'm not sure why it'd end. It's an error, for sure.


LoadsTotal= 30; //How Many Total Lods To Do Per Character!

Uhh... It only did 1 lod!

It did it again:
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 2 Minutes and 48 Seconds
| Mined 0 ores at a rate of 0 per hour
| Mined 0 loads at a rate of 0 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : *** = F 13 00:02:24 0 0 0 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
Successfully executed

EDIT: I found the bug :\ Everytime I minimize SCAR it will exectute!

EDIT: Scratch that! Everytime I minimize anything even Google Chrome it will execute it'self! I think it is because I am using YDebug!

EDIT: Yep it was YDebug's Fault hehe. I turned it off and it started to work!

i luffs yeww
06-13-2010, 12:47 AM
Were you using the SMART version or non SMART? Either way, your computer isn't very good. If you use SMART, run the script, let SMART open, then stop the script. Then let SMART completely load RS, then run the script. For maximum profit, log in manually, enable SMART, then run the script. And don't open up SMART.

YoHoJo
06-13-2010, 12:55 AM
He's connfusing ^.

Press play on script.
Let SMART pop up.
Click Stop on script.
Let Runescape load completely.
Minimize SMART.
Press play on script.

LEAVE IT ALONE.
If you keep un-minimizing/minimizing SMART it messes up the script.

ffcfoo
06-13-2010, 01:08 AM
He's connfusing ^.

Press play on script.
Let SMART pop up.
Click Stop on script.
Let Runescape load completely.
Minimize SMART.
Press play on script.

LEAVE IT ALONE.
If you keep un-minimizing/minimizing SMART it messes up the script.

Well I didn't know that lol.

YoHoJo
06-13-2010, 01:11 AM
Good luck with it, try to post some monster proggies if you can (most likely you wont because you are just using one character :p)
And feedback/advice is also appreciated.

ffcfoo
06-13-2010, 02:07 AM
Proggy!


/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 54 Minutes and 20 Seconds
| Mined 308 ores at a rate of 340 per hour
| Mined 11 loads at a rate of 12 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : *** = T 18 00:00:00 308 11 5390 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

YoHoJo
06-24-2010, 02:30 AM
Hey guys, did the shape of ores in the inventory change sometime recently?
Does the Ore DTM need to be updated, or is this still running fine?

Becks
06-30-2010, 05:45 PM
I'll give it a run today and tell you how it goes.

nickrules
06-30-2010, 06:13 PM
works fine. I've used it for around 5 to 6 hours a day for the past 3 ish days.
forgot to save proggy :redface:. mybad, lol

i luffs yeww
06-30-2010, 07:46 PM
>_< Release 1.05 already! :) It worked fine when I tested.

Becks
07-10-2010, 04:54 PM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 3 Hours, 40 Minutes and 16 Seconds
| Mined 2046 ores at a rate of 557 per hour
| Mined 81 loads at a rate of 22 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : ezi = F 1 03:16:20 2046 81 71610 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

xFeaR
07-13-2010, 12:02 PM
if i can make a suggestion. lower the break time because it auto logs my army out then it never logs them back in

edit: might be that i set sleepweepie to 5mins but it started to break for 260s while my guy was mining. this might be my fault?

Becks
07-13-2010, 12:47 PM
if i can make a suggestion. lower the break time because it auto logs my army out then it never logs them back in

edit: might be that i set sleepweepie to 5mins but it started to break for 260s while my guy was mining. this might be my fault?

i got the same error he encountered.

GREEN GIANT
07-18-2010, 12:57 PM
Hey guys,
Keep getting this error message when using SMART
[Runtime Error] : Out Of Range in line 107 in script C:\Users\Administrator\Desktop\YoHoJos PMS Release 1.04.scar

Line 107 is the account username btw, can anyone help?

Frement
07-18-2010, 01:03 PM
Hey guys,
Keep getting this error message when using SMART
[Runtime Error] : Out Of Range in line 107 in script C:\Users\Administrator\Desktop\YoHoJos PMS Release 1.04.scar

Line 107 is the account username btw, can anyone help?

You have NumberOfPlayers higher or lower then it should be, if you are using 2 players, NumberOfPlayers should be 2, if you are using 1, then it should be 1.

i luffs yeww
07-18-2010, 01:08 PM
^ You have your DeclarePlayers set up wrong. Let's say you have three players.



//stuff

NumbOfPlayers= 3; //How many players are you using
StartPlayer= 0; //Player to start auoting with! (0 means first char)
//StartPlayer doesn't really matter. Just make sure it's less than NumbOfPlayers - 1.
//stuff
procedure DeclarePlayers;
var i:integer;
begin
NumberOfPlayers(NumbOfPlayers);
CurrentPlayer := StartPlayer;
for i := 0 to NumbOfPlayers-1 do
Players[i].BoxRewards := ['mote', 'ostume', 'XP', 'Gem', 'ithril', 'oal', 'une', 'oins'];

with Players[0] do
begin
Name := ''; //Player username.
Pass := ''; //Player password.
Nick := ''; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end;
with Players[1] do
begin
Name := ''; //Player username.
Pass := ''; //Player password.
Nick := ''; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end;
with Players[2] do
begin
Name := ''; //Player username.
Pass := ''; //Player password.
Nick := ''; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end;

//Programming languages tend to start with 0. Always assume that, and you'll be golden.
//(Pointing that out because the last one is Players[2], which may seem like the second player, but it's the third.
{ with Players[3] do
begin
Name := ''; //Player username.
Pass := ''; //Player password.
Nick := ''; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end;
with Players[4] do
begin
Name := ''; //Player username.
Pass := ''; //Player password.
Nick := ''; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.
end; }

//Comment out or delete the other ones.
end;

GREEN GIANT
07-18-2010, 01:18 PM
Right im only using one player atm so is this setup correct? Iv tried having numbplayers as 1 but still same error.

Const
YourStatsUserID = ''; //User ID from scriptmanager.freehostia.com
YourStatsPass = ''; //Your pass from scriptmanager.
NumbOfPlayers= 0; //How many players are you using
StartPlayer= 0; //Player to start auoting with! (0 means first char)

Version= '1.04'; //NO TOUCHY!

{************************************************* ******************************
procedure DeclarePlayers;
By: SRL
Description: SRL's Player Setup
************************************************** *****************************}
procedure DeclarePlayers;
var i:integer;
begin
NumberOfPlayers(NumbOfPlayers);
CurrentPlayer := StartPlayer;
for i := 0 to NumbOfPlayers-1 do
Players[i].BoxRewards := ['mote', 'ostume', 'XP', 'Gem', 'ithril', 'oal', 'une', 'oins'];

with Players[0] do
begin
Name := 'xxx'; //Player username.
Pass := 'ffff'; //Player password.
Nick := 'ert'; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 3; //Seconds to try mining rock before clicking another.
end;
with Players[1] do
begin
Name := 'fgfg'; //Player username.
Pass := 'fdf'; //Player password.
Nick := 'erf'; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 3; //Seconds to try mining rock before clicking another.
end;

Frement
07-18-2010, 01:24 PM
No? You have 2 players in there, so NumberOfPlayers should be 2, not 0?

How can NumberOfPlayers be 0 at anytime?

i luffs yeww
07-18-2010, 01:27 PM
If It's just one player set NumbOfPlayers to 1 and only have with Players[0] do etc. (delete all the other players).

GREEN GIANT
07-18-2010, 01:29 PM
Because 0 uses first player slot and 1 uses second, it doesnt work either way for me.
Iv tried having it as 1 and 2, it just skips to the next player and gives the out of range error. I put two chars in with both 1 and 2 but still out of range =/

EDIT

Thanks guys sorted it, just had to delete the unused player slots haha silly me =/

i luffs yeww
07-18-2010, 01:39 PM
Save the script, restart SCAR.

jakulinh
08-10-2010, 03:32 PM
When there are no rocks available to mine it freezes, do you know why?
Thanks in advance,
Jakulinh

darkfire23
08-11-2010, 10:01 PM
great first test :)

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 3 Hours, 26 Minutes and 15 Seconds
| Mined 2149 ores at a rate of 626 per hour
| Mined 86 loads at a rate of 25 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

works flawlessly with simba, didn't drop gems, but isn't a huge concern.
Great work yoho, thanks!!

E: I ran this again today, but it kept getting stuck on a few of the randoms. is there a script that allows all of them to be solved i.e. the pirate treasure or the mime?

jizzoe
08-13-2010, 05:15 PM
Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
Status: | SRL Randoms Report |
Status: | www.villavu.com |
Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Status: | SRL Logs : 1 |
Status: | Foresters Solved : 1 |
Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 11 Hours, 9 Minutes and 49 Seconds
| Mined 5145 ores at a rate of 461 per hour
| Mined 242 loads at a rate of 21 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : ebro = F -1 08:30:22 5145 242 180075L:Login Failed
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
All Players Inactive
Disguising as: All Players Inactive
Successfully executed.

jizzoe
08-13-2010, 05:16 PM
im lv 86 minning ...ive used this from 70 to 86 so far

Nosidak
08-15-2010, 05:49 AM
I have tried this and many other scripts but none of them are working for me. It keeps on saying:

SRL Compiled in 31 msec
SMART Initialized.
Loaded: Server 102, Members: False, Signed: True, Super Detail: False.
Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
Status: | SRL Randoms Report |
Status: | www.villavu.com |
Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
arro logging in
Disguising as: arro logging in
It has been 3 minutes and Runescape is not yet ready... Terminating.
Successfully executed.

What is the problem.

jizzoe
08-22-2010, 04:25 PM
Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
Status: | SRL Randoms Report |
Status: | www.villavu.com |
Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Status: | SRL Logs : 1 |
Status: | Lamps Solved : 1 |
Status: | Demons Solved : 1 |
Status: | Petes Missed : 1 |
Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 10 Hours, 37 Minutes and 51 Seconds
| Mined 4707 ores at a rate of 443 per hour
| Mined 175 loads at a rate of 16 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : ebro = F 48 08:37:33 4707 175 164745L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
All Players Inactive
Disguising as: All Players Inactive
Successfully executed.

TomTuff
08-26-2010, 06:24 AM
it started taking a break 19 ores into my first load. Solution? or should this be a one time thing?

YoHoJo
08-26-2010, 06:38 AM
@TomTuff
No idea :/ very odd. Maybe screwed up if you were minimizing/umminimizingSMART too much.

Anyways, I haven't posted here in ages and I've heard some talk of the gem DTM being outdated (The script is no longer dropping gems) can anyone confirm this?
Also are there any other QUICK fixes or tweaks that need to be made?

TomTuff
08-26-2010, 06:57 AM
@TomTuff
No idea :/ very odd. Maybe screwed up if you were minimizing/umminimizingSMART too much.

Anyways, I haven't posted here in ages and I've heard some talk of the gem DTM being outdated (The script is no longer dropping gems) can anyone confirm this?
Also are there any other QUICK fixes or tweaks that need to be made?

i unminimized it once to make sure it was working, i'm guessing that's it, i've let it run adn according the the report window it's working fine.

i luffs yeww
08-26-2010, 07:13 AM
When I ran this ages ago the DTM was outdated. I think each gem is slightly different now, but I dunno. Can't remember.

(Not sure why that'd be the case, but whatever.)

paul82587
08-29-2010, 12:32 AM
Hey I find your older version, 1.03 is more stable than the newer one

I think the script works better without SRL username and pw.

paul82587
08-29-2010, 07:36 PM
Hello all,

This is my first proggie for this script
It works well, ignores disconnect and solves randoms too :)
I use multiplayer and enters same account five times because I regularly get disconnected from my router

* BTW, it works good when you leave it alone. On character number 2, I only got 2 loads done because I messed around with SMART window.


Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
Status: | SRL Randoms Report |
Status: | www.villavu.com |
Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Status: | SRL Logs : 1 |
Status: | Lamps Solved : 2 |
Status: | Beekeepers Solved : 1 |
Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 8 Hours, 23 Minutes and 40 Seconds
| Mined 3679 ores at a rate of 438 per hour
| Mined 153 loads at a rate of 18 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : igl = F 58 03:51:47 1673 63 58555 L:Mining
1 : igl = F 58 03:43:45 1676 75 58660 L:Mining
2 : igl = F 58 00:13:25 44 2 1540 L:Mining
3 : igl = T 58 00:00:00 286 13 10010 L:Mining
4 : igl = T 0 00:00:00 0 0 0 L:
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

butthole
08-31-2010, 11:02 PM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 10 Hours, 4 Minutes and 18 Seconds
| Mined 3467 ores at a rate of 344 per hour
| Mined 139 loads at a rate of 13 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : *** = F......1....10:03:18..3467...139..121345L..:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

Logged out due to disconnect.

-Elite Hacker-
09-01-2010, 07:56 AM
Hmm, doesn't work for me... Something about type mismatch on line 679? (v1.04)

paul82587
09-04-2010, 10:46 PM
Hey I have a much better proggy


Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
Status: | SRL Randoms Report |
Status: | www.villavu.com |
Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Status: | SRL Logs : 1 |
Status: | Lamps Solved : 1 |
Status: | Certers Solved : 1 |
Status: | Demons Solved : 1 |
Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 22 Hours, 49 Minutes and 59 Seconds
| Mined 11990 ores at a rate of 525 per hour
| Mined 639 loads at a rate of 27 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : igl = F 58 04:02:31 2204 90 77140 L:Mining
1 : igl = F 58 03:57:09 2540 125 88900 L:Mining
2 : igl = F 58 04:04:15 2406 144 84210 L:Mining
3 : igl = F 58 07:58:20 4070 244 142450L:Mining
4 : igl = F 58 02:45:08 770 36 26950 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
All Players Inactive
Disguising as: All Players Inactive
Successfully executed.

TomTuff
09-05-2010, 05:15 PM
this script is still awesome =D
Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
Status: | SRL Randoms Report |
Status: | www.villavu.com |
Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Status: | SRL Logs : 1 |
Status: | Demons Solved : 1 |
Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 5 Hours, 27 Minutes and 29 Seconds
| Mined 3501 ores at a rate of 642 per hour
| Mined 150 loads at a rate of 27 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : oom = T 1 04:58:21 3501 150 122535L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

spotfeed
09-15-2010, 05:53 PM
downloaded will post a proggie later thx:)

Overtime
09-15-2010, 06:19 PM
downloaded will post a proggie later thx:)

Probably not going to work, since there was just a runescape update.

paul82587
09-15-2010, 09:23 PM
God damn it it can't drop ores it just right clicks ore and and move onto next one.

I hate runescape update

Overtime
09-15-2010, 09:53 PM
I wont even bother botting till a new reflection/srl is updated. And this script will probably have to get updated too.

BraK
10-08-2010, 01:25 PM
@TomTuff
No idea :/ very odd. Maybe screwed up if you were minimizing/umminimizingSMART too much.

Anyways, I haven't posted here in ages and I've heard some talk of the gem DTM being outdated (The script is no longer dropping gems) can anyone confirm this?
Also are there any other QUICK fixes or tweaks that need to be made?

Still works as great as ever.

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 1 Hours, 4 Minutes and 23 Seconds
| Mined 745 ores at a rate of 694 per hour
| Mined 30 loads at a rate of 27 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : pnk = T 73 00:00:00 745 30 26075 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

@Yohojo the gems are broken I have confirmed this suggest using blacklist for it instead. The outline count should be the same for all of the gems.

~BraK

E: Changing this function here

{************************************************* ******************************
Function GemThere(x1,y1,x2,y2:Integer):Boolean;
By: YoHoJo
Description: Checks for GemDTM in a box
************************************************** *****************************}
Function GemThere(x1,y1,x2,y2:Integer):Boolean;
var x,y:Integer;
Begin
If FindDTM(Gemdtm,x,y,x1,y1,x2,y2) Then
Result:=True;
End;

to this right here fixes the Gem Dropping.


Function GemThere(x1,y1,x2,y2:Integer):Boolean;
var x,y:Integer;
Begin
Result := (CountColor(131072,x1,y1,x2,y2) = 66)
End;

~BraK

bolshak25
10-15-2010, 04:56 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 2 Hours, 46 Minutes and 38 Seconds
| Mined 1979 ores at a rate of 712 per hour
| Mined 82 loads at a rate of 29 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : *** = T 1 00:00:00 1979 82 34632 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 6 Hours, 18 Minutes and 53 Seconds
| Mined 4072 ores at a rate of 645 per hour
| Mined 232 loads at a rate of 36 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : *** = F 1 06:02:24 4072 232 71260 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

can you fix the level please? other than that all is well

GTFO
10-16-2010, 10:48 PM
does this still work? because i keep getting an error.

otavioafm
10-16-2010, 10:56 PM
is this a msi script?

traveler
10-16-2010, 11:43 PM
is this a msi script?

no this is not a msi script

Dogma
02-14-2011, 04:37 PM
I signed up just to download this script and I must say, so far I've very happy with it. Here's my first test run:

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 1 Hours, 20 Minutes and 1 Seconds
| Mined 859 ores at a rate of 646 per hour
| Mined 31 loads at a rate of 23 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : DogM = T 0 00:00:00 0 0 0 L:
1 : = T 0 00:00:00 0 0 0 L:
2 : = F 0 16:01:20 0 0 0 L:Login Failed
3 : = F 1 00:28:55 140 5 4900 L:Cant Find Rock :(
4 : = T 1 00:00:00 719 26 25165 L:

YoHoJo
02-14-2011, 07:28 PM
ROFL wow.
I haven't updated this script in a really long time, surprised it still ran for over an hour!

What exactly made it mess up? Maybe someday I'll get around to fixing it up.

Sgt Soul
02-15-2011, 01:53 AM
ROFL wow.
I haven't updated this script in a really long time, surprised it still ran for over an hour!

What exactly made it mess up? Maybe someday I'll get around to fixing it up.

ahh I remember this script :)
it was the ultimate power miner yohojo ;) <3

Dogma
02-15-2011, 11:55 AM
Here's a third run I did

| Worked for 1 Hours, 53 Minutes and 19 Seconds
| Mined 1192 ores at a rate of 631 per hour
| Mined 44 loads at a rate of 23 per hour

Umfortunatly I did get stuck on the maze random. Does anyone know of a good/new powermining script that will handle randoms and has more anti-bans in place?

grats
02-15-2011, 12:36 PM
Here's a third run I did

| Worked for 1 Hours, 53 Minutes and 19 Seconds
| Mined 1192 ores at a rate of 631 per hour
| Mined 44 loads at a rate of 23 per hour

Umfortunatly I did get stuck on the maze random. Does anyone know of a good/new powermining script that will handle randoms and has more anti-bans in place?

No scripts have different randoms, they're all done by reflection / srl (which is just added to a script)

so all the scripts will basically have the same outcome for randoms... I'm amazed this script still works after how old it is, it used to be the best.

YoHoJo
02-15-2011, 07:41 PM
Here's a third run I did

| Worked for 1 Hours, 53 Minutes and 19 Seconds
| Mined 1192 ores at a rate of 631 per hour
| Mined 44 loads at a rate of 23 per hour

Umfortunatly I did get stuck on the maze random. Does anyone know of a good/new powermining script that will handle randoms and has more anti-bans in place?

Sweet, thanks for trying it out!
As grats said, randoms are handled by SRL/Reflection so all scripts handle randoms exactly the same. I think I was working on a newer version of this with more antibans but haven't released it yet, what kind of antiban stuff are you looking for specifically? any suggestions?

DrokTheSmith
02-16-2011, 01:12 AM
Hopefully you guys don't flame me I'm in need of a little assistance. I'm a complete noob with both SCAR and SRL, and I was hoping if one of you could give me some sort of direction. I have this script downloaded and everything, I open it up in SCAR press run, it brings up the runescape log in which I can only fill out if SMART is disabled. So I go into the game but it acts just as normally as if i was playing... If SMART is re-enabled I am completely unable to go anything. Thank in advance for your understanding and patience... and no I haven't navigated any sites that much, I figure a clearer and more concise answer could be gotten here.

YoHoJo
02-16-2011, 03:36 AM
Hopefully you guys don't flame me I'm in need of a little assistance. I'm a complete noob with both SCAR and SRL, and I was hoping if one of you could give me some sort of direction. I have this script downloaded and everything, I open it up in SCAR press run, it brings up the runescape log in which I can only fill out if SMART is disabled. So I go into the game but it acts just as normally as if i was playing... If SMART is re-enabled I am completely unable to go anything. Thank in advance for your understanding and patience... and no I haven't navigated any sites that much, I figure a clearer and more concise answer could be gotten here.

This guide should help:
http://villavu.com/forum/showthread.php?t=60501

Also, make sure in the runescape graphics menu that the screen is on FIXED and not RESIZEABLE option.

3Garrett3
02-16-2011, 03:42 AM
Hopefully you guys don't flame me I'm in need of a little assistance. I'm a complete noob with both SCAR and SRL, and I was hoping if one of you could give me some sort of direction. I have this script downloaded and everything, I open it up in SCAR press run, it brings up the runescape log in which I can only fill out if SMART is disabled. So I go into the game but it acts just as normally as if i was playing... If SMART is re-enabled I am completely unable to go anything. Thank in advance for your understanding and patience... and no I haven't navigated any sites that much, I figure a clearer and more concise answer could be gotten here.

The answer to your problem lies in the setup of the script. I could easily link you to this tutorial ('http://villavu.com/forum/showthread.php?t=60501') which would definitely help, but I'll try to offer an explanation of my own as well.

You should go into the script in SCAR and search (ctrl+f) for DeclarePlayers. It should be very close to the top. You will want to put in your username and password (this is the same setup as any other RS bot, your information is safe). To do this you will type your username and password inside the quotation marks (like 'username'). This should be all that the script requires for the aspect of setting your player up to log in.

I would recommend reading the tutorial I have linked to as well, in case I was not clear enough. You may also want to read specific instructions in the first post of this thread.

Good luck, don't hesitate to ask anything else!

DrokTheSmith
02-16-2011, 06:09 AM
This guide should help:
http://villavu.com/forum/showthread.php?t=60501

Also, make sure in the runescape graphics menu that the screen is on FIXED and not RESIZEABLE option.


The answer to your problem lies in the setup of the script. I could easily link you to this tutorial ('http://villavu.com/forum/showthread.php?t=60501') which would definitely help, but I'll try to offer an explanation of my own as well.

You should go into the script in SCAR and search (ctrl+f) for DeclarePlayers. It should be very close to the top. You will want to put in your username and password (this is the same setup as any other RS bot, your information is safe). To do this you will type your username and password inside the quotation marks (like 'username'). This should be all that the script requires for the aspect of setting your player up to log in.

I would recommend reading the tutorial I have linked to as well, in case I was not clear enough. You may also want to read specific instructions in the first post of this thread.

Good luck, don't hesitate to ask anything else!

Thank you guys that information helped quite a bit :thumbsup: I'm now dealing with a red dot that's appearing on my inventory bag...it moves around occasionally. Otherwise the bot is not doing anything at all. Now I haven't changed anything within the script except my username, pass, and nickname. I went back to the opening post and saw the "const" box. I'm guessing my problem with the bot not working has to do with this? Am I supposed to paste that in or something? Thanks again for the help guys I'm hopeful to get this working for curiosity's sake xD

YoHoJo
02-16-2011, 07:11 AM
The 'red dot' represents the mouse. It's there so you know what exactly is going on/where the mouse is.

Under username, pass, and nick there are other options called Integers[1] and Integers[2] You need to change those also.


with Players[0] do
begin
Name := ''; //Player username.
Pass := ''; //Player password.
Nick := ''; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.

The little notes after the "//s" in the script explain what you need to change them to in order for the script to work.

Also, when/if you do get it working try watching it for a few loads, this script is pretty old and hasn't been updated in a while so it might be buggy, but if it goes through one mining/dropping process it should be just fine.

Be sure to post the progress report and explain and problems/bugs you find too please, good luck.

DrokTheSmith
02-16-2011, 10:43 PM
The 'red dot' represents the mouse. It's there so you know what exactly is going on/where the mouse is.

Under username, pass, and nick there are other options called Integers[1] and Integers[2] You need to change those also.


with Players[0] do
begin
Name := ''; //Player username.
Pass := ''; //Player password.
Nick := ''; //Player nickname - 3-4 letters of Player username.
Active := True;
Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
Integers[2] := 5; //Seconds to try mining rock before clicking another.

The little notes after the "//s" in the script explain what you need to change them to in order for the script to work.

Also, when/if you do get it working try watching it for a few loads, this script is pretty old and hasn't been updated in a while so it might be buggy, but if it goes through one mining/dropping process it should be just fine.

Be sure to post the progress report and explain and problems/bugs you find too please, good luck.
Unfortunately now I am getting this bug:
"[Runtime Error] : Exception: Can't allocate the DIB handle in line 429 in script C:\Program Files (x86)\SCAR 3.22\includes\SRL\SR\Core\GameTab.scar"

YoHoJo
02-17-2011, 01:32 AM
That's a common error, you can search for a fix, if you read the 2nd post on this thread I posted how to fix it though:
http://villavu.com/forum/showthread.php?t=54215

Also, try downloading SIMBA and see if the script works on that instead, do realize I've never ran/tested/coded the script on SIMBA, so it might not work, but SIMBA is the newest/most up to date thing right now.

Sorry for all of your troubles, I hope they don't turn you away from SIMBA/SRL, once you get all of the basic few things figured out everything runs smoothly. Also do realize this script is quite old too :]. Good Luck.

YoHoJo
10-26-2011, 02:10 AM
:spot:MUTHA MUTHA UPDATE BISHES!:spot:
Updated to work AFTER the 'bot nuke' update!
Please use with caution and monitor it! Feedback will be greatly appreciated, as it is a rough beta version!

Remember since SMART no longer works you must drag the crosshair to the runescape client before clicking play, and the script will take over your mouse. A way around this is to use a Virtual Machine (VM) if you have a powerful enough computer to do so.

Please use it, monitor it, fill out your stats information, and give me tons of feedback!

kingarabian
10-26-2011, 02:19 AM
Wtfisthisyoufkinhackeriwilltestasapk?

YoHoJo
10-26-2011, 02:23 AM
Thanks :].

grats
10-26-2011, 02:40 AM
had a good 10 mins of trouble trying to get it to login, not sure why.. but that isn't really your scripts problem anyway

working good so far with iron, got an inventory done

kingarabian
10-26-2011, 02:42 AM
Setting up my VM atm.

YoHoJo
10-26-2011, 02:43 AM
Oh yeah, not sure how/if SRL's login is still working or not each time I started it I was already logged in.
Thanks for testing it for me! Let me know how it runs and try to test it as much as you can please :D!

One problem that MAY occur is the colors being a bit messed up so the script might hover on dropped ores so let me know if that happens so I can tweak some things.

grats
10-26-2011, 02:46 AM
Oh yeah, not sure how/if SRL's login is still working or not each time I started it I was already logged in.
Thanks for testing it for me! Let me know how it runs and try to test it as much as you can please :D!

One problem that MAY occur is the colors being a bit messed up so the script might hover on dropped ores so let me know if that happens so I can tweak some things.

speedy dropping on iron for sure, it works well

it is ignoring a ruby (gem) I have in my inventory, all icon sizes are messed up, they made them smaller not sure if permanent or what, but ruby definitely isn't dropping after 3 loads.

And yes it's set to true on drop the gems.



Setting up my VM atm.

yea I got like 4 of them ready to test some of these color scripts lol

I recommend using google chrome, go to tools and "create application shortcut"

this removes all of the overhead of browser.

YoHoJo
10-26-2011, 03:13 AM
I recommend using google chrome, go to tools and "create application shortcut"

this removes all of the overhead of browser.


What exactly do you do that for?

I'm using VMWare Workstation for my VMs and running TinyXP as the OS, it's lightweight as fuck and works great!

As for the gem grats, I only have a DTM for the normal sized gems, not the small ones (I think I said this in the first post and requested for someone to please make me one :D), as for ores I have DTMs for both small and large.

Thanks for feedback so far, and thanks for building up the stats! Yeah SPEED is one thing I try to get really well done in all of my scripts I tweaked the dropping a lot to get it speedy! :D

Thanks for feedback everybody! MAN THIS FEELS GREAT WOO!

E: Oh I see what you meant about application shortcut, that's a neat tool thanks!

kingarabian
10-26-2011, 05:40 AM
Well man it just stands there and keeps clicking the inventory tab.

YoHoJo
10-26-2011, 06:04 AM
Well man it just stands there and keeps clicking the inventory tab.

I was actually having a few problems earlier (using VMWare and Chrome).
I just restarted the script/vm/used firefox instead (basically restart everything :p) and it worked just fine again.

I currently have a 1 Hour 33 Minute progess reports and the stats page shows that many other people are using it too http://stats.villavu.com/script/3 .
So try just restating things and see whats up.

What ore do you have it set to mine? What location are you mining at?

YoHoJo
10-26-2011, 06:16 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.05 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 1 Hours, 45 Minutes and 2 Seconds
| Mined 661 ores at a rate of 377 per hour
| Mined 24 loads at a rate of 13 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : ****= F 1 01:35:03 661 24 23135 L:Cant Find Rock :(
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

I think SRL login is 1/2 broken seems to work sometimes and not others.
Script stopped after logging off, waiting ~5 minutes (as a break) and then failed to log in again.

Overtime
10-26-2011, 02:42 PM
Yea it is. and when it logs in it just hovers in the inventory tab and doesn't even do anything.

Im running in software mode i havn't tried holding "s" upon loading to see if it will load in safe mode because i heard it was taken out.

haloistaken
10-26-2011, 02:53 PM
Just tried the script. It worked this time :D. Is it possible to add like a check to see if Player is still mining a rock? Cuz it will move to another rock whilst it's already mining one. I have timer on 5 seconds..and i was mining in LummY swamp. :P

grats
10-26-2011, 02:58 PM
What exactly do you do that for?

I'm using VMWare Workstation for my VMs and running TinyXP as the OS, it's lightweight as fuck and works great!

As for the gem grats, I only have a DTM for the normal sized gems, not the small ones (I think I said this in the first post and requested for someone to please make me one :D), as for ores I have DTMs for both small and large.

Thanks for feedback so far, and thanks for building up the stats! Yeah SPEED is one thing I try to get really well done in all of my scripts I tweaked the dropping a lot to get it speedy! :D

Thanks for feedback everybody! MAN THIS FEELS GREAT WOO!

E: Oh I see what you meant about application shortcut, that's a neat tool thanks!

oh my bad, felt like shit last night just saw an update post and started testing, didn't really read it :P

I'll collect bmp's of all them

oh I guess they're about regular size now..

yep ruby / sapphire dropped fine, I assume all the others do too


wait emerald is still tiny LOL
attached a picture .bmp there, zipped it.. the upload sites change them to jpg usually.. gotta go

not sure if they'll just go back to big size since the other gems did though






good stuff:

http://i.imgur.com/C8uM9.jpg
trusted it enough to go to the dentist while it was working, it looks like the server just went down.

kingarabian
10-26-2011, 10:47 PM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.05 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 2 Hours, 4 Minutes and 7 Seconds
| Mined 631 ores at a rate of 304 per hour
| Mined 31 loads at a rate of 14 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : aah = F 1 00:43:36 239 15 8365 L:Mining
1 : ela = F 1 00:14:59 112 4 3920 L:Mining
2 : sho = F -1 00:24:03 224 8 7840 L:Mining
3 : cat = F -1 00:24:43 56 4 1960 L:Login Failed
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

YoHoJo
10-27-2011, 03:14 AM
Wiki Wiki WAAA?!
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.05 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 4 Hours, 26 Minutes and 8 Seconds
| Mined 2240 ores at a rate of 505 per hour
| Mined 80 loads at a rate of 18 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : *** = T 1 03:22:31 2240 80 78400 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

DeSnob
10-27-2011, 03:33 AM
Wiki Wiki WAAA?!
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.05 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 4 Hours, 26 Minutes and 8 Seconds
| Mined 2240 ores at a rate of 505 per hour
| Mined 80 loads at a rate of 18 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : *** = T 1 03:22:31 2240 80 78400 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
Nicee! I'm glad Color is king once again (until reflection is back).. it's nice to see a small change that gets the community motivated to script.

kingarabian
10-27-2011, 03:56 AM
Hurry up and start working on your banking YoHoJomofo <3.

grats
10-27-2011, 04:35 AM
awesome dropping method by the way, I like the "mistakes" it makes then recovers

it's reading my level wrong, is that due to SRL? it's saying 57.. when it's level 90 lol



Tags
14% gay., miner, mining, ore, over 9000, power, power miner, power miner suprene, script, yohojo
LOL

YoHoJo
10-27-2011, 04:39 AM
Yeah due to SRL.
Thanks! I love that feature too it's pretty snazzy. I'm going to make it do it less in later versions though so it's faster.
Lol yeah I know that's in the tags, Claw put it there I think.

Popo009
10-27-2011, 04:40 AM
Excuse me for my noobiness, but this script seems to be working for some of you. I am having problems with the bot, I start him already logged in as for me logging doesn´t seem to work. (I have put my login details inside the script.)
When Im ingame the bot just plays with my tasks and inventory tab, am I only one who is experiencing this? Cheers and sorry!

Phran6
10-27-2011, 04:42 AM
you'r on safe mode ?

grats
10-27-2011, 04:42 AM
Excuse me for my noobiness, but this script seems to be working for some of you. I am having problems with the bot, I start him already logged in as for me logging doesn´t seem to work. (I have put my login details inside the script.)
When Im ingame the bot just plays with my tasks and inventory tab, am I only one who is experiencing this? Cheers and sorry!

make sure you're in safe mode and minimum settings, and fixed..

if it continues, run it with smart.. I was having a similar problem that to this very second I still cannot figure out why it does it.


if you are in software I can confirm it'll play with your tabs as you described

YoHoJo
10-27-2011, 04:43 AM
Go to the settings and make sure you're on safe mode.
If you don't see an option for safe mode, I think you need to hold down 's' when the client is loading and it puts it into safe mode for you.

YoHoJo
10-27-2011, 04:43 AM
Damn we rock, double ninja'd!

Popo009
10-27-2011, 04:43 AM
you'r on safe mode ?
Erm... I though they deleted the safe mode? How do I access it?

EDIT: Okay thanks, gee you guys are fast! Thanks a thousand, will report how it goes!

YoHoJo
10-27-2011, 04:45 AM
They got rid of UNSIGNED, not safe mode.

deathdeal55
10-27-2011, 05:27 AM
[Error] (15:17): is ('=') expected at line 14
Compiling failed.

i run the script and this is what comes up on the bottom??

grats
10-27-2011, 05:31 AM
did you uncomment it? line 14 doesn't have anything






unless it means sleepyweepy line 14

does it highlight a line in simba for you?

YoHoJo
10-27-2011, 05:31 AM
Post line 13, 14, and 15 so I can see.
You probably accidentally removed a = sign somewhere.

Popo009
10-27-2011, 05:39 AM
Aight guys, running great after I switched to safemode. Will be on standby for bugs and report em straight away. Cheers and thanks once again!

YoHoJo
10-27-2011, 05:49 AM
Aight guys, running great after I switched to safemode. Will be on standby for bugs and report em straight away. Cheers and thanks once again!

No problem! Shouldn't be any big bugs besides random event solvers failing, good luck and enjoy! THANKS!

haloistaken
10-27-2011, 12:41 PM
make sure you're in safe mode and minimum settings, and fixed..

if it continues, run it with smart.. I was having a similar problem that to this very second I still cannot figure out why it does it.


if you are in software I can confirm it'll play with your tabs as you described
Isn't SMART outdated right now?

Heavenzeyez1
10-27-2011, 01:37 PM
Isn't SMART outdated right now?

No, SMART is up and running again thanks to Ben<3, update your plugins through SIMBA and you should be fine again! ;)

~Eerik.

Popo009
10-27-2011, 03:33 PM
Erm, how do I get the bot to do @ ? It makes some strange sign instead of that and then it gets "failed to login" and just stays there doing nothing.

YoHoJo
10-27-2011, 05:30 PM
Hmm really? You should be able to type your email where it asks for username and @ symbol should work fine. Show the line where you entered your email please(you can remove the email just post the line). Might be a problem with SRL.
For now you can just log in manually and set thr script to do a large number of loads.

xiffs
10-27-2011, 06:39 PM
Gives me an error when started, opens up another tab called login and goes to line 94, anyone help please?

YoHoJo
10-27-2011, 06:40 PM
Paste the error that you are getting.
It will appear in the 'debug box' under the script.

YoHoJo
10-27-2011, 07:02 PM
@xiffs (He PMed me).
Make sure in runescape settings that you are in SAFE MODE.
If you do not see a button for safe mode in runescape settings then refresh the page and as runescape is loading hold down the 's' button.
ALSO, make sure to drag the crosshair on Simba onto the runescape client.
Then try running it and see.


To everyone: Now that SMART is working I'll re-add SMART support to the script so you don't have to auto via the browser.

grats
10-27-2011, 11:17 PM
http://i.imgur.com/H3UQ9.jpg

having an issue there, when it is on the left side:

http://i.imgur.com/ObVqr.jpg

say the player was the pink circle, it gets confused between the bottom 3 ores and just goes crazy with the mouse.. the longest I saw it go was maybe a minute, but that loop could be sped up when you do the drop method with less mistakes ( as you said you were going to do later)

YoHoJo
10-27-2011, 11:19 PM
Confused. What loops?
Mouse keeps hovering over rocks? Or dropped ores? Or both? What's happening?
And yea later on I'll add option weather to enable or disable the 'antiban dropping'.

grats
10-27-2011, 11:23 PM
Confused. What loops?
Mouse keeps hovering over rocks? Or dropped ores? Or both? What's happening?
And yea later on I'll add option weather to enable or disable the 'antiban dropping'.

mouse goes from 1 ore to the other every <1 second, pretty fast

it only happens when all 3 of the rocks have ores in them but it just goes back and forth back and forth

YoHoJo
10-27-2011, 11:35 PM
Happen often?
If it does, try playing on a server with low ping and in settings change CPU Usage to High/Very High.
I'd just like to know if that would fix something.

Anyways, to fix that I ASSUME what you should do is change the line
Wait(100 + Random(50));
to a longer wait.

ALSO! I need to change somewhere there anyways I'm using CountUpColor instead of UpText (because Jagex changed the rs font once long ago, but it's fixed now).

So yea, lengthen that wait and it should work!

grats
10-27-2011, 11:41 PM
Alright I'll test it out after I beat your progress report

and yea my cpu is set to maximum and it's lag free (like 37 ping or something) and the smart fps bar is set to max

YoHoJo
10-27-2011, 11:47 PM
Very odd, never ever had that problem before.
So yea adjust the timing, and that SHOULD do the trick!
Nothing else comes to mind right now. But it'll be a simple fix.
Odd how that's happening all of a sudden.

grats
10-28-2011, 12:07 AM
Very odd, never ever had that problem before.
So yea adjust the timing, and that SHOULD do the trick!
Nothing else comes to mind right now. But it'll be a simple fix.
Odd how that's happening all of a sudden.

I think it's because of how the rocks are positioned, this is the place above yanville

I don't think any other places are positioned like this.. I know the one I was at never had this problem because there was no "have to walk all the way around that rock to get to the other rock" type deal

YoHoJo
10-28-2011, 12:28 AM
If it's just hovering over rocks and not clicking, it's an uptext problem.
If it's actually clicking a rock, but then clicking another before getting there, then it's a different problem.
What's going on?

Overtime
10-28-2011, 12:46 AM
This is the error on line 94 i get it too under the login.


Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
Status: | SRL Randoms Report |
Status: | www.villavu.com |
Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
Exception: Range check error at line 94
The following DTMs were not freed: [SRL - Lamp bitmap, 1]
The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap]

line:

Result := (CountColor(0, MSCx - 20, MSCy - 20, MSCx + 20, MSCy + 20) < 20);


Yes everything is updated.

Window was boxed the runescape window.

Safe mode is enabled.

Whats weird is when i set it to "Software" the error wont pop up, but it also wont even try logging in.

YoHoJo
10-28-2011, 12:50 AM
Yeah just add smart support and it will work fine.

After Program YoHoJosPMS; put
{$DEFINE SMART}

After SetupSRL line put

Smart_Server := 61;
Smart_Signed := True;
Smart_Members:= False;

No login problems when using SMART.

And yeah, Software mode is odd, only safe mode works properly. This is just some error when you don't auto with smart, something about losing focus of the client or something. Will add smart support (easy lol) in next 'version'.

grats
10-28-2011, 01:23 AM
If it's just hovering over rocks and not clicking, it's an uptext problem.
If it's actually clicking a rock, but then clicking another before getting there, then it's a different problem.
What's going on?

I said before, it goes to a rock then goes to a new rock.. it doesn't click it doesn't really hover either, it moves to 1 rock then moves to another almost instantly

I'll video it if you want

I haven't tested the delays yet but they would probably fix it



http://i.imgur.com/ygbhq.jpg

haha!

update killed me!

YoHoJo
10-28-2011, 08:52 AM
NICE JOB! Love it!
Here's my latest one! Just stopped because it only solved 1/2 of scaperune.
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.05 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 3 Hours, 7 Minutes and 55 Seconds
| Mined 1737 ores at a rate of 556 per hour
| Mined 63 loads at a rate of 20 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : **** = F 1 02:30:57 1737 63 60795 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

xiffs
10-28-2011, 09:09 AM
Still not working for me:S it says no error or something, it just stands there :S

Do you have teamviewer or anything?

Popo009
10-28-2011, 04:38 PM
Is there an option for the time between breaks or how long the break is? I couldent find it in the code, could you tell me if there is one?

grats
10-28-2011, 05:34 PM
Is there an option for the time between breaks or how long the break is? I couldent find it in the code, could you tell me if there is one?

Yea in the script up toward the top (line 85 is where it starts for me)

the two specific lines are
LoadsPerLogin= 10; //How Many Loads To Do Per Login!
and
SleepyWeepie= 20; //Minutes to wait before logging in again.0 = Disabled.

By changing the first line you'll change how many loads it does until it takes a break, and the second line is how long it actually takes a break when it starts


Still not working for me:S it says no error or something, it just stands there :S

Do you have teamviewer or anything?

Yea I can help you through teamviewer if you need let me know

xiffs
10-28-2011, 10:26 PM
Still doesn't work and grats isn't online :( Should there show up something like a paint or gui?

YoHoJo
10-29-2011, 12:13 AM
Still doesn't work and grats isn't online :( Should there show up something like a paint or gui?

What exactly is the problem you are having?
Did you add smart support or are you using your browser?
I'll upload a SMART version later today, that should stop most of the little problems.

peeweewoen
10-31-2011, 10:27 PM
when i press play i get this error:


[Error] (15:16): is ('=') expected at line 14
Compiling failed.

any help?

for me line 14 is where you enter the username

EDIT: nvm fixed the problem

YoHoJo
10-31-2011, 10:53 PM
Should look like
Name := 'usernamehere';

You maybe accidentally backspaced the = sign?

Overtime
11-01-2011, 03:22 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~


~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.05 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 2 Hours, 9 Minutes and 1 Seconds
| Mined 1092 ores at a rate of 511 per hour
| Mined 39 loads at a rate of 18 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : ames = T 57 03:37:15 1092 39 38220 L:Cant Find Rock :(
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
Welcome to Runescape.

'Runescape has been updated.'
Successfully executed.

YoHoJo
11-01-2011, 03:32 AM
Lovely! Thanks!!!

NotABot
11-01-2011, 07:44 PM
Great script mate but my computer started itself while I was AFK and now when I'm starting this script again it does this: http://imgur.com/Iiegy

Please help ! :confused:

YoHoJo
11-01-2011, 07:58 PM
You need to get the latest SMART.
I think doing (in Simba). SRL Tab> Check for Update should fix it.
If not download Smart 6.9 from here
http://villavu.com/forum/showthread.php?t=67428
and extract libsmart.dll to your simba plugins folder.

bolshak25
11-01-2011, 09:55 PM
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
Status: | SRL Randoms Report |
Status: | www.villavu.com |
Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Status: | SRL Logs : 1 |
Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.05 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 1 Hours, 22 Minutes and 18 Seconds
| Mined 952 ores at a rate of 694 per hour
| Mined 34 loads at a rate of 24 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : ine = T 1 00:00:00 952 34 33320 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>


level doesnt work and bottom worked isnt working. level i care more about just because itd be nice to know what its at. ill post better later just wanted to mainly point out level

NotABot
11-02-2011, 01:11 PM
You need to get the latest SMART.
I think doing (in Simba). SRL Tab> Check for Update should fix it.
If not download Smart 6.9 from here
http://villavu.com/forum/showthread.php?t=67428
and extract libsmart.dll to your simba plugins folder.

Wow thanks mate and I'm sorry I couldnt get any progress report from yesterday.

peeweewoen
11-03-2011, 01:53 AM
proggie :)

| Worked for 2 Hours, 37 Minutes and 30 Seconds
| Mined 1508 ores at a rate of 576 per hour
| Mined 56 loads at a rate of 21 per hour

YoHoJo
11-03-2011, 01:58 AM
Awesone! Going pretty fast I like that, next version will be slightly faster!
Thanks for using and posting, any feedback or suggestions?

peeweewoen
11-04-2011, 04:58 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.05 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 3 Hours, 8 Minutes and 24 Seconds
| Mined 1921 ores at a rate of 613 per hour
| Mined 72 loads at a rate of 22 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

proggie!

great script!
maybe increase antiban like add camera movements, etc...

bolshak25
11-04-2011, 05:19 PM
hey YoHoJo, change all the find level from 15 to 14 and thatll get the mining level issue fixed. im guessing it was changed when dungeoneering got added.

Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
Status: | SRL Randoms Report |
Status: | www.villavu.com |
Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Status: | SRL Logs : 1 |
Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.05 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 9 Minutes and 33 Seconds
| Mined 104 ores at a rate of 653 per hour
| Mined 4 loads at a rate of 25 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : ine = F 0 00:00:00 0 0 0 L:
1 : awe1 = T 0 00:00:00 0 0 0 L:
2 : awe2 = F 0 00:00:00 0 0 0 L:
3 : awe3 = T 67 00:00:00 104 4 3640 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~>

lovin the script

demikidisme
11-05-2011, 09:33 AM
it doesnt seem to enter my user and pass after i start it

MSI scripts work for me but not public scripts..