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 :]
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 :]
Last edited by piefool; 03-27-2010 at 08:44 PM.
It would also be good to stop the animation of the background screen too. Glad you got it working, good luck!
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
If you are using just one character, then remove the extra lines
Like this:
http://villavu.com/forum/showpost.ph...&postcount=446
You can just copy/paste that and overwrite the DeclarePlayers in the script with that ^
Ty will try it but trying coh3ns power chopper atmto 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
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 accountwish me luck
Last edited by radiclerobby; 03-29-2010 at 03:17 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![]()
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.
NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN NYAN
I've done all this, to no avail. Everything is updated to my knowledge.
Donny, when you update SRL with subversion, what does it say the revision number is?
http://villavu.com/forum/showthread.php?t=47714
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
you can do thisSCAR Code:If InRange(CountColorTolerance(ColStats[0], Q1, U1, Q2, U2, ColStats[1]), Count1, Count2) Then
Result:=True;
SCAR Code:result:= InRange(CountColorTolerance(ColStats[0], Q1, U1, Q2, U2, ColStats[1]), Count1, Count2)
also line 437 438 you have
SCAR Code:if(invfull)then
result:=true;
you can have
SCAR Code:result := invfull;
on line 699 - 701 you have
SCAR Code:If (not(Players[CurrentPlayer].Integers[82]=0)) Then
If (Players[CurrentPlayer].Integers[82] Mod LoadsPerLogin)=0 Then
Result:=True;
you could do
SCAR Code: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![]()
Last edited by radiclerobby; 03-30-2010 at 03:17 AM. Reason: some suggestions
umm lvl 85 mining much???
THX so much YoHoJo you gave me 85 mining with no effort involved, much love for you!!! hehe <3
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
I personally hate when people do that. I like clean code rather then that.
Remember to set:
to the number of players you have in your declare players.SCAR Code:NumbOfPlayers= 5; //How many players are you using
If you only use one, then put that in there and delete all the others on lines 105-149.
Example:
SCAR Code:NumbOfPlayers= 1; //How many players are you usingSCAR Code: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;
Last edited by Frement; 03-31-2010 at 12:40 AM.
There used to be something meaningful here.
It works great, although, I did have some problems with dropping. Great script!!!!!!
http://i154.photobucket.com/albums/s...m_99373791.gif
You are correct.
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.
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! I have no world switching or anything of that sort built into the script.
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.
Hi
I'm really excited to try out your script. But once I filled everything in, I got this error:
This is where the error brings me in the script:Code: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
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:Code: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;
Hopefully you can figure it outCode:NumbOfPlayers= 1; //How many players are you using StartPlayer= 0; //Player to start auoting with! (0 means first char)![]()
Last edited by YoHoJo; 04-03-2010 at 08:17 PM.
Change DeclarePlayers to just having the stuff for with players[0] do blah blah blah.
Thanks, I appreciate the help![]()
You left your user/pass in there by the way. Might wanna change it now.
No I didn't?
There are currently 2 users browsing this thread. (0 members and 2 guests)