View Full Version : UltraSteel Heater +CoalBag avg 85k mage xp/ph
TsterT
12-19-2011, 05:57 PM
It's taking extremely long to deposit my Steel Bars in Varrock West Bank. Super heats and withdraws fast, but depositing takes about 4 or 5 seconds.
dcraig1313
12-19-2011, 07:59 PM
still having the issue with when you level up it just stops. are there any temp fixes in the coding i can do that would be simple or should i just wait for the next revamp of the script
shebee
12-20-2011, 01:46 PM
It's taking extremely long to deposit my Steel Bars in Varrock West Bank. Super heats and withdraws fast, but depositing takes about 4 or 5 seconds.
There was a bug with SRL yesterday that caused all scripts to run like this.
Edit: I was testing the script, everything else works fine except that levelup thing.
Nothing in the debug log.
yeah will see what the level up bug is all about prob not calling the function in the right place will have a look when i get home been busy with another script lately
illuminatiswag
12-20-2011, 11:22 PM
Cru1z check your pms
putonajonny
12-21-2011, 03:13 AM
Just my two cents:
writeln(PadR('[Bars : '+IntToStr(Round((BarsMade*3600000) / GetTimeRunning))+'/ hour', 50) + ']');
writeln('[-------------------------------------------------]')
to be added onto the proggy
ProfitPerBar := (GetPrice(2353))-(GetPrice(440))-2*(GetPrice(453))-(GetPrice(561));
function GetPrice(ObjID : Integer) : Integer;
Var
str, str2, str3, str4 : string;
startat, endat, com, k, b, m :integer;
begin
str := GetPage('http://services.runescape.com/m=itemdb_rs/g=runescape/viewitem.ws?obj='+IntToStr(ObjID))
startat := Pos('<th scope="row">Current guide price:</th>',str)
If(startat>0) then
begin
endat := Pos('<th scope="row">Today',str)
str2 := Copy(str,(startat+46),endat-startat-63);
k := Pos('k',str2)
com := Pos(',',str2)
b := Pos('b',str2)
m := Pos('m',str2)
str4 := str2
If(k > 0) then
begin
str3 := Copy(Str2,1,k-1)
str4 := IntToStr(StrToInt(Copy(Str3,1,Length(Str3)-2)+Copy(Str3,Length(Str3),1))*100)
end;
If(b > 0) then
begin
str3 := Copy(Str2,1,b-1)
str4 := IntToStr(StrToInt(Copy(Str3,1,Length(Str3)-2)+Copy(Str3,Length(Str3),1))*100000000)
end;
If(m > 0) then
begin
str3 := Copy(Str2,1,m-1)
str4 := IntToStr(StrToInt(Copy(Str3,1,Length(Str3)-2)+Copy(Str3,Length(Str3),1))*100000)
end;
If(com > 0) then
begin
str4 := Copy(Str2,1,com-1)+Copy(Str2,com+1,Length(str2)-com)
end;
Result := StrToInt(str4)
end else
begin
Result := -1
end
end;
Automatic Profit Calculation ^^
Then maybe swap these lines:
WriteLn(PadR('[Profit : ' + FloatToStr(Round((BarsMade*iprofit * 3600) / (GetTimeRunning))) + ' k/Hr', 50) + ']');
WriteLn(PadR('[Profit Made : ' +IntToStr(BarsMade*iprofit/1000)+'k', 50) + ']');
Just makes them easier to read
Wormy
12-21-2011, 06:26 AM
Here's my longest progress report yet; it only stopped because I ran out of iron. Sorry I didn't enter profit/bar.
[--------------- Cru!z!ns Steel Smelter --------------]
[ Ran for 3 Hours, 55 Minutes and 12 Seconds]
[Magic xp : 324360 ]
[Magic : 82744 Mage XP/Hr ]
[Smith : 26540 Smith XP/Hr ]
[Profit : 0 Gp/Hr ]
[Profit Made : 0 ]
[Bars made : 6120 ]
I just started smelting mithril bars without the coalbag. After superheating there are always 2 left over coals, and the scripts banks them. It would be faster and less bot-like if the script just left the extra 2 coals and carried out the rest of the banking as usual.
quazzymodem
12-21-2011, 06:37 AM
Just my two cents:
writeln(PadR('[Bars : '+IntToStr(Round((BarsMade*3600000) / GetTimeRunning))+'/ hour', 50) + ']');
writeln('[-------------------------------------------------]')
to be added onto the proggy
ProfitPerBar := (GetPrice(2353))-(GetPrice(440))-2*(GetPrice(453))-(GetPrice(561));
function GetPrice(ObjID : Integer) : Integer;
Var
str, str2, str3, str4 : string;
startat, endat, com, k, b, m :integer;
begin
str := GetPage('http://services.runescape.com/m=itemdb_rs/g=runescape/viewitem.ws?obj='+IntToStr(ObjID))
startat := Pos('<th scope="row">Current guide price:</th>',str)
If(startat>0) then
begin
endat := Pos('<th scope="row">Today',str)
str2 := Copy(str,(startat+46),endat-startat-63);
k := Pos('k',str2)
com := Pos(',',str2)
b := Pos('b',str2)
m := Pos('m',str2)
str4 := str2
If(k > 0) then
begin
str3 := Copy(Str2,1,k-1)
str4 := IntToStr(StrToInt(Copy(Str3,1,Length(Str3)-2)+Copy(Str3,Length(Str3),1))*100)
end;
If(b > 0) then
begin
str3 := Copy(Str2,1,b-1)
str4 := IntToStr(StrToInt(Copy(Str3,1,Length(Str3)-2)+Copy(Str3,Length(Str3),1))*100000000)
end;
If(m > 0) then
begin
str3 := Copy(Str2,1,m-1)
str4 := IntToStr(StrToInt(Copy(Str3,1,Length(Str3)-2)+Copy(Str3,Length(Str3),1))*100000)
end;
If(com > 0) then
begin
str4 := Copy(Str2,1,com-1)+Copy(Str2,com+1,Length(str2)-com)
end;
Result := StrToInt(str4)
end else
begin
Result := -1
end
end;
Automatic Profit Calculation ^^
Then maybe swap these lines:
WriteLn(PadR('[Profit : ' + FloatToStr(Round((BarsMade*iprofit * 3600) / (GetTimeRunning))) + ' k/Hr', 50) + ']');
WriteLn(PadR('[Profit Made : ' +IntToStr(BarsMade*iprofit/1000)+'k', 50) + ']');
Just makes them easier to read
I don't think many people buy a small enough amount of ore to have it at the exchange price, I know i buy my supplies at the lower end and wait for the bar price to raise to sell my bars allowing for more profit. As such having an easy input of my personally estimated profit per bar. Nice work though.
forgot all about update lastnight that deposit bug iu can fix ur self search the line with
Deposit(1,27).
Change that to something
Like
Deposit(1,26);
botscape
12-21-2011, 04:40 PM
Hey, just curious, but for some reason the bot doesn't want to run for longer than 30 mins for me D:
No idea why this is, it just says it was run successful and shuts down.
Anyone got a fix for this?
P.S I'm superheating using a coalbag at soulwars bank and making steel bars.
quazzymodem
12-21-2011, 09:51 PM
I was having some issues with soulwars bank, if you need a one click bank maybe adding castlewars or the shanty pass? also randoms need to be checked for more often, more often then not my bot gets stuck at a currently solvable random. Other than that this is working great I did something like 18k bars yesturday :P
sckwarrior
12-21-2011, 11:26 PM
Generally I can get the script to work anywhere but soulwars, when running in soulwars it runs for about 10-15 minutes then just logs out.
shebee
12-22-2011, 12:08 AM
Don't you other guys have problems with the level up thing?
quazzymodem
12-22-2011, 12:17 AM
not that I have noticed, but I wont level in either magic or smithing for a looooong time lol, i have atleast another 50k bars to go through...
Surfster
12-22-2011, 02:44 AM
antiban or anti-randoms?
quazzymodem
12-22-2011, 03:51 AM
some issues with the randoms, but thats due to the high amount of xp in a shorter period of time.
Shady89
12-22-2011, 02:57 PM
how much profit is this after coal/iron?
miketree
12-22-2011, 03:13 PM
SteelBarPrice - (coalPrice*2 + ironPrice + naturerunePrice) = profit
botscape
12-22-2011, 03:39 PM
[--------------- Cru!z!ns Steel Smelter --------------]
[ Ran for 5 Hours, 14 Minutes and 35 Seconds]
[Magic xp : 291076 ]
[Magic : 55516 Mage XP/Hr ]
[Smith : 17807 Smith XP/Hr ]
[Profit : 104748 Gp/Hr ]
[Profit Made : 549200 ]
[Bars made : 5492 ]
[Debug none ]
<333 ignore the profit, I just set to 100
The expee is slower than normal as I have several programs running including microsoft word etc as I'm babysitting as I do an essay.
But atleast I can verify that your bot handles lag quite well =-]
Love the script, got it to work in varrock (SW it kept shutting down :( )
Yeah I will update this tonight hopefully if i get some time just had a lot to do lately with another script.
botscape
12-22-2011, 04:48 PM
Yeah I will update this tonight hopefully if i get some time just had a lot to do lately with another script.
Don't worry dude, I love your script and appreciate the work you're doing :3.
I wanna learn how to script, but I got exams coming up and a shittonne of work atm :|
It's part of the reason I ever started botting ;P
Amsterdam
12-22-2011, 06:45 PM
Can i smelt mithril with this?
dynamikamil
12-22-2011, 08:26 PM
great script. Just one problem, it stops working whenever you level up. I'm going to try to fix it myself and if I find a fix I'll post it here.
Amsterdam
12-22-2011, 09:50 PM
Yess i can smelt mithril with this, it works great! but i think the xp rate is a bit slow? mine says: 38670 Mage xp/h and 12393 Smith xp/h
and when it lvls it stops.. anyone knows how to fix this?
sadzx1
12-23-2011, 04:24 AM
can u add gold pls? they are beast magic+smithing xp if u wear goldsmith gauntlets
gymtanlogin
12-23-2011, 07:50 AM
HM, how do i get this to work, im really confused on all the settings. and witch one do i download? the latest one?
shstiger2009
12-23-2011, 08:30 AM
HM, how do i get this to work, im really confused on all the settings. and witch one do i download? the latest one?
Of course you download the latest one. It's the lowest one on the list. :)
gymtanlogin
12-23-2011, 08:56 AM
The level thing is still a bit messed up, but when it happens, you can fix it by clicking "disable smart" and then "enable smart" and itll work, but i wouldnt do this as an overnight thing i guess >.<
Elmeri233
12-23-2011, 11:04 AM
HM, how do i get this to work, im really confused on all the settings. and witch one do i download? the latest one?
Yeah, the latest one is the bottom one on the download list, and unlike in MSI, where a UI pops out where you fill the forms, you have to do it manually, by before starting the scipt, scrolling down the page where you see like 'username' and 'password' quotes. Enter the correct information in these and start the script, and it should work. Also always keep your SPS and SRL updated.
Yet again I forget to update it
@sadex1 just set it up the way you would iron for now and it should work great
I don't think I added all the xp types just for steel I think I removed a lot from the script
@dynamikamil. To fix the level up bug. Add a timer when it click the ore so if it doesn't find the magic tab within say 15 seconds it will select it and continue.
@everybody. For anyone who will be online around 7:00pm uk Remind me to update.
botscape
12-23-2011, 12:04 PM
Yet again I forget to update it
@sadex1 just set it up the way you would iron for now and it should work great
I don't think I added all the xp types just for steel I think I removed a lot from the script
@dynamikamil. To fix the level up bug. Add a timer when it click the ore so if it doesn't find the magic tab within say 15 seconds it will select it and continue.
@everybody. For anyone who will be online around 7:00pm uk Remind me to update.
Will do :D and thanks, fixed the level up glitch (it's very rough but I level once a day so IDC really :P)
[ Ran for 2 Hours, 18 Minutes and 4 Seconds]
[Magic xp : 189210 ]
[Magic : 82225 Mage XP/Hr ]
[Smith : 26374 Smith XP/Hr ]
[Profit : 155142 Gp/Hr ]
[Profit Made : 357000 ]
[Bars made : 3570 ]
[Debug none ]
Had 93k+ mage xp p/h but I got stuck in a maze and didn't notice :mad:
Still great, just got 93 mage and 77 smithing :-]
Will do :D and thanks, fixed the level up glitch (it's very rough but I level once a day so IDC really :P)
[ Ran for 2 Hours, 18 Minutes and 4 Seconds]
[Magic xp : 189210 ]
[Magic : 82225 Mage XP/Hr ]
[Smith : 26374 Smith XP/Hr ]
[Profit : 155142 Gp/Hr ]
[Profit Made : 357000 ]
[Bars made : 3570 ]
[Debug none ]
Had 93k+ mage xp p/h but I got stuck in a maze and didn't notice :mad:
Still great, just got 93 mage and 77 smithing :-]
Good to hear it buddy will also add a player form
As Elmeri233 mentioned is very easy and makes my script a lot more noob friendly.
gymtanlogin
12-23-2011, 12:59 PM
How do you update the timer or w/e you say, to fix the level up glitch? please explain :P
Amsterdam
12-23-2011, 02:53 PM
yeah how do you fix the lvl-up glitch? and for some kinda reason i always get stuck at randoms.. the script couldn't solve even one random; i've been stuck in the balloon-pop random,bee-hive random, gravedigger.. and so on; other than those bugs its a VERY good script!
quazzymodem
12-23-2011, 04:58 PM
yeah how do you fix the lvl-up glitch? and for some kinda reason i always get stuck at randoms.. the script couldn't solve even one random; i've been stuck in the balloon-pop random,bee-hive random, gravedigger.. and so on; other than those bugs its a VERY good script!
Not sure how to fix it, I actually thought that was with srl not this script. Also I have yet to see this script successfully us findnormalrandoms and actually find one.
dr kickassss
12-23-2011, 06:41 PM
Error: Exception: Access violation at line 143
The following DTMs were not freed: [SRL - Lamp bitmap, 1]
The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap]
whats wrong ?
Updated script need testers
ps cheers for the rep guys just noticed. :D
sahibjs
12-24-2011, 12:26 AM
Running it right now (:
Some things-
Didn't enter in my bank pin - not too big of an issue
Goes to magic screen, clicks superheat spell, clicks on ore, and clicks on magic screen again.
There is no need to click on the magic screen for the second time.
EDIT: randomly stopped, I'll start it again, see if it was my fault or the scripts
Running it right now (:
Some things-
Didn't enter in my bank pin - not too big of an issue
Goes to magic screen, clicks superheat spell, clicks on ore, and clicks on magic screen again.
There is no need to click on the magic screen for the second time.
EDIT: randomly stopped, I'll start it again, see if it was my fault or the scripts
To you and everybody else re download the fail safes might of been abit short .
sahibjs
12-24-2011, 12:41 AM
To you and everybody else re download the fail safes might of been abit short .
re-downloaded and now works great (:
still doesn't type in bank pin, but as I said before, thats not an issue I'm too concerned about. I'll edit this post with a proggy soon!
maybe add a save option for the form?
dynamikamil
12-24-2011, 01:10 AM
still stops when I level up :/
dynamikamil
12-24-2011, 01:55 AM
I mean the timer you were talking about is in the script, I tried making it wait longer but it still does not work. I will try something else and report back.
michaelrolander
12-24-2011, 07:24 AM
This working great man, im going 99 mage on this.
re-downloaded and now works great (:
still doesn't type in bank pin, but as I said before, thats not an issue I'm too concerned about. I'll edit this post with a proggy soon!
maybe add a save option for the form?
Reason for the pin not working is I forgot to convert then entered pin from a string to and integer.
I will add a save option. Maybe tonight if I have time.
About the level up bug ill see what else I can do.
Rezozo
12-24-2011, 02:43 PM
Everything works great CRU1Z1N,
except every time i level up the script basically stops and I have to 'give it a little push' to start again.(I change screens form magic to inv), then it starts again...
and I lv up again and the same happens.
Please help, I am awaiting a reply!
ps. Great job!
Rezozo
12-24-2011, 04:33 PM
Running it right now (:
Some things-
Didn't enter in my bank pin - not too big of an issue
Goes to magic screen, clicks superheat spell, clicks on ore, and clicks on magic screen again.
There is no need to click on the magic screen for the second time.
EDIT: randomly stopped, I'll start it again, see if it was my fault or the scripts
First it randomly stopped because of the level up glitch, so u probably lved up, congratz!!
second, i think it goes from magic screen, to inventory and back to magic screen as a failsafe (i might be wrong) this way if u click anywhere by accident, it will start normally again.
ps to anyone: is there a fix for the level up problem. :)
dieforskill1
12-24-2011, 05:20 PM
The bot worked really good for me untill last night when i started getting the following messg
SRL - Flag bitmap]
[Hint] (23:3) : Variable "SMELT" never used at line 22
[Hint] (23:3) : Variable "W" never used at line 22
[Hint] (23:3) : Variable "H" never used at line 22
[Hint] (23:3) : Variable "TBARTYPE" never used at line 22
[Hint] (24:3) : Variable "SM" never used at line 23
[Hint] (23:3) : Variable "IMAGE" never used at line 24
Compiled successfully in 2750 ms.
does anyone know how to fix this? the thing only works for about 10 min now and then loggs me off now =\
sahibjs
12-24-2011, 06:45 PM
First it randomly stopped because of the level up glitch, so u probably lved up, congratz!!
second, i think it goes from magic screen, to inventory and back to magic screen as a failsafe (i might be wrong) this way if u click anywhere by accident, it will start normally again.
ps to anyone: is there a fix for the level up problem. :)
I'm level 98 smithing and 99 magic, far from leveling up :P
I'm having issues when using a coal bag. It will fill the coal bag up and then fill the inventory with coal, then get stuck trying to withdraw iron over and over with a full inventory and full bag of coal. For now im just using it without coal bag and its working great.
Nvm was my mistake, didn't have 30 smithing yet, now it's working fine with coal bag and the magic xp per hour is crazy lol.
glad you working :D. And yeah xp is good
it can also go faster :D
there is a few variables that need removing will do on next release
DamGurlYouFinePlayah
12-24-2011, 11:19 PM
For some reason when I run the latest release it compiles fine but the client will not open, any ideas?
look at the top of the script for this // and delete it
DamGurlYouFinePlayah
12-24-2011, 11:23 PM
look at the top of the script for this // and delete it
Ahh... Thank you very much.
It's looking good so far. Will post an update later.
Grihmm
12-25-2011, 04:49 AM
I have been trying this script out, and every 30-152 bars the cursor over shoots the coal when in the bank and then stops working. Just letting you know. I have to restart it when it happens.
Edit: Also, it sometimes doesn't take out coal to fill the coal bag, and then continues to withdraw the iron and the rest of the coal. So it makes a few steel bars and then proceeds to smelt iron bars with my iron ore.
sahibjs
12-25-2011, 05:17 AM
It used to work for me, but now it does ~200 bars and stops. It says nothing for debug and instead just says "successfully executed".
andyuk3
12-25-2011, 11:54 PM
SRL Compiled in 0 msec
It has been 3 minutes and Runescape is not yet ready... Terminating.
Make sure your settings are set to fixed screen
Successfully executed.
Can't seem to get it to work
andyuk3
12-26-2011, 12:13 AM
got it working, changed line 2 to {$I SRL/SRL/misc/smart.scar}
Tickyy
12-26-2011, 12:15 AM
got it working, changed line 2 to {$I SRL/SRL/misc/smart.scar}
Please do not double post, use edit button.
andyuk3
12-26-2011, 12:22 AM
OK.
It stops heating when i level up? :S
Grihmm
12-26-2011, 01:49 AM
I think it was overshooting the coal for me because of lag for the most part. I got it to superheat a maximum of 2227 times before it stopped. Idk what happened that time because I wasn't here.
@andyuk3 You need to change all your RS settings to minimum, fixed screen, no custom cursors, no text over cursor. You must have resizable screen or something enabled.
Edit: Btw, how do I get one of the "proggys" you guys post? I would like to contribute in some small way. I can barely run a script so I can't make one, but I can do this hopefully.
kevin33
12-26-2011, 01:54 AM
I think it was overshooting the coal for me because of lag for the most part. I got it to superheat a maximum of 2227 times before it stopped. Idk what happened that time because I wasn't here.
@andyuk3 You need to change all your RS settings to minimum, fixed screen, no custom cursors, no text over cursor. You must have resizable screen or something enabled.
Edit: Btw, how do I get one of the "proggys" you guys post? I would like to contribute in some small way. I can barely run a script so I can't make one, but I can do this hopefully.
When the script ends it posts a proggy in the debug box. All you have to do is simply copy and paste it onto the thread. There you have it. You have provided a "proggy" aka progress report
Grihmm
12-26-2011, 01:58 AM
Dang. I closed out the Simba window with the 2k bars. Is there anyway I can recover that?
kevin33
12-26-2011, 02:01 AM
Dang. I closed out the Simba window with the 2k bars. Is there anyway I can recover that?
Well you should check your simba file on your computer to check if the proggy recorded as it is supposed to. Other than that I dont think you can recover it. If it is there you just open it up then copy and paste it on the thread or take a screenshot and post that.
Grihmm
12-26-2011, 02:12 AM
Check which simba file? Where can I locate that?
lilcmp1
12-26-2011, 02:57 AM
So where exactly would the timer be added to fix level up glitch? Better yet would it be possible to just add after Idk 60 seconds proceed to banking? I think that would fix it I'm just not sure where that would be added.
kevin33
12-26-2011, 03:08 AM
Check which simba file? Where can I locate that?
Sorry I have no idea. I read it on one of the threads while I was learning to script. It said it in a prggy thread. I may be wrong dont take my word for it. Someone with more knowledge will be ale to help you much better then I.
Wow, works great, awesome! :9
andyuk3
12-26-2011, 07:35 AM
I think it was overshooting the coal for me because of lag for the most part. I got it to superheat a maximum of 2227 times before it stopped. Idk what happened that time because I wasn't here.
@andyuk3 You need to change all your RS settings to minimum, fixed screen, no custom cursors, no text over cursor. You must have resizable screen or something enabled.
Edit: Btw, how do I get one of the "proggys" you guys post? I would like to contribute in some small way. I can barely run a script so I can't make one, but I can do this hopefully.
I have all the settings correct, when i level up it just stops and does nothing
Hi guys sorry about the bugs I caused :)
Will update this tonight.
There shouldt be any other bugs but the level up one so please insure you have everything set up properly.
Ps hope all you had a great christmas.
nicmoon
12-26-2011, 09:23 PM
I think my script stopped after 255 bars both times...is it possible the variable is getting limited out as a byte somehow? Will try again...
This last time it clicked on the NPC at SW and wouldn't try to bank again...I don't think it's a problem just don't quit out of the banking procedure until it has failed like 5 times.
Lastly, just wondering does the commented out antiban procedure mean there is none?
Grimtoker
12-26-2011, 11:22 PM
[--------------- Cru!z!ns Steel Smelter --------------]
[ Ran for 1 Hours, 30 Minutes and 17 Seconds]
[Magic xp : 98315 ]
[Magic : 65337 Mage XP/Hr ]
[Smith : 20957 Smith XP/Hr ]
[Profit : 123278 Gp/Hr ]
[Profit Made : 185500 ]
[Bars made : 1855 ]
ignore profit, was random. great script. sw banking needed modifying a bit to make it run for longer (it sometimes messes up and clicks the soul wars guy, but is fixable)
Amsterdam
12-27-2011, 12:18 AM
How can i make this script to solve randoms? does anyone know how to do this? it keeps getting stuck at randoms..
PatDuffy
12-27-2011, 01:41 AM
Hmmm I think I figured out the cause of quite a few people's problems if using the coal bag.
If the script fudges withdrawing, it will continue to attempt to fill the coal-bag even if it is already full, resulting in the script failing since there are no iron ore to use to make steel bars. To fix this, I would suggest some type of check for chat-box for "coal bad is already full" or something to that extent, FindBlackChatText or one of those functions should easily do so.
Other than that, great script, made around ~9k steel bars today and got 93-94 magic :)
nicmoon
12-27-2011, 09:01 AM
ignore profit, was random. great script. sw banking needed modifying a bit to make it run for longer (it sometimes messes up and clicks the soul wars guy, but is fixable)
How do I even change the colors? The procedure for it confused me a lot...
edit: I ended up changing tries to 5 from 2 and the script will run for a while (clicks the NPC a lot though)... you should steal the Fantastic Fletchers script or at least steal his idea of facing the compass west at SW.
Cheers guys will read thru this thread tonight and flatten out all these kinks.
TsterT
12-27-2011, 03:52 PM
Doesn't seem to even be initializing the client :S. Just compiles it, then stops.
lilcmp1
12-27-2011, 05:10 PM
Doesn't seem to even be initializing the client :S. Just compiles it, then stops.
Did you take out the // in line 2?
Also today I've been having problems where it is not withdrawing iron/coal. It either open/closes bank over and over or tries to superheat nothing >.> Hadn't happened until today so idk, colors maybe?
TsterT
12-27-2011, 06:14 PM
Did you take out the // in line 2?
Didn't even realize that, thanks man.
lolcat
12-27-2011, 06:26 PM
Did you take out the // in line 2?
Yeah man thanks, I had same questions.
Amsterdam
12-27-2011, 08:11 PM
Am I the only one who has problems with the randoms?? it keeps getting stuck at randoms; it hasn't solved one yet
miketree
12-27-2011, 08:26 PM
you need to use soulwars banking if you wan't to avoid randoms.
Just wanted to post an update, script has been running great except for the lvl up bug, which isn't a big deal once your higher lvl and not lvling every 30 mins.It has gotten me from 43 to 80 magic so far in just a couple days.
hents1230
12-27-2011, 09:02 PM
thanks for this script
Amsterdam
12-27-2011, 11:32 PM
you need to use soulwars banking if you wan't to avoid randoms.
Yeah i will become p2p soon and move to soulwars, i have discovered another little bug, i'm superheating steel bars, and sometimes the script only withdraws iron ores and makes iron bars; does anyone know how to fix this?
andyuk3
12-28-2011, 12:04 AM
Doesnt seem to superheat mith bars properly? Steel bars work fine
nicmoon
12-28-2011, 12:14 AM
Yeah i will become p2p soon and move to soulwars, i have discovered another little bug, i'm superheating steel bars, and sometimes the script only withdraws iron ores and makes iron bars; does anyone know how to fix this?
Ummm are you changing the mode at the top. From what I gathered from the code not picking one might do iron...another possibility is that you don't have the bank setup like he does in the original post.
Doesnt seem to superheat mith bars properly? Steel bars work fine
Are you putting mithril in bank slot one? And changing the mode to mithril?
NEWTOSIMBA
12-28-2011, 04:01 AM
Has anyone found a fix for the Level-up bug? I have tried writing a function that checks the beginning level and every time I level up I restart the main sequence of the script but there are still bugs in my code.
TsterT
12-28-2011, 05:05 AM
He's fixing it either tonight, or sometime tomorrow. Or at least that's what I got.
Grihmm
12-28-2011, 05:55 AM
I also have the problem where it sometimes makes iron bars, however it is not a large problem since only 37 iron were made by accident compared to the 6125 that were made correctly. It isn't a significant loss. Also, I went to sleep while the script was running and woke up to find it had failed the jail random.
@OP Do you think you could maybe add a list of which randoms are currently working to your original post? I think that would be helpful. Also, I only tried the Soul Wars bank once but it didn't work when I did.
Proggies:
---------- Cru!z!ns Steel Smelter --------------]
[ Ran for 1 Hours, 12 Minutes and 40 Seconds]
[Magic xp : 76214 ]
[Magic : 62928 Mage XP/Hr ]
[Smith : 20184 Smith XP/Hr ]
[Profit : 1187 Gp/Hr ]
[Profit Made : 1438 ]
[Bars made : 1438 ]
[Debug none ]
------ Cru!z!ns Steel Smelter --------------]
[ Ran for 1 Hours, 27 Minutes and 40 Seconds]
[Magic xp : 110240 ]
[Magic : 75449 Mage XP/Hr ]
[Smith : 24200 Smith XP/Hr ]
[Profit : 1423 Gp/Hr ]
[Profit Made : 2080 ]
[Bars made : 2080 ]
[Debug none ]
(My profit numbers are wrong, because I just put in 1 for the "profit per bar" slot.
TsterT
12-28-2011, 06:29 AM
Also, I went to sleep while the script was running and woke up to find it had failed the jail random.
@OP Do you think you could maybe add a list of which randoms are currently working to your original post? I think that would be helpful.
The randoms are solved by SRL I believe. These script have nothing to do with them.
bloopa1
12-28-2011, 08:38 AM
im having trouble running it i get "" is an invalid integer, this is the first time getting some besides msi. any help?
loser69
12-28-2011, 08:47 AM
nice script runs flawlessly apart from when I level up magic or smithing it just stops.
Got a spare hour gonna do some work on this now
So if you have any suggestions let me know asap
Chris
12-28-2011, 03:31 PM
It works great :)
Suggestions:
When im doing mithril bars, it withdraws 9 mithril ores while it could do 10
And when it banks, it also banks all coal left, thats not really needed :P
tarajunky
12-28-2011, 04:48 PM
A failsafe to make sure that there is inventory space available after trying to Fill the coal bag would be nice. If the coal bag is already full, it can't withdraw any ores and gets stuck.
Amsterdam
12-28-2011, 06:21 PM
I have found a bug, i'm now superheating at soulwars; and sometimes the npc(idk what hes called) stands next to the bankchest and the script clicks on him instead of the chest and then doesn't continue to superheat and eventually log out.
btw here's a little log.
---------- Cru!z!ns Steel Smelter --------------]
[ Ran for 32 Minutes and 40 Seconds]
[Magic xp : 28799 ]
[Magic : 52898 Mage XP/Hr ]
[Smith : 16933 Smith XP/Hr ]
[Profit : 1000 Gp/Hr ]
[Profit Made : 549 ]
[Bars made : 549 ]
[Debug none ]
andyuk3
12-28-2011, 10:34 PM
When doing mith bars with coal bag, it clicks superheat and clicks on the first coal ore which next to the mith, but doesnt click on mith ore it clicks on coal :/
Gurkis
12-28-2011, 10:50 PM
NVM, didn't run script, so i didnt knew ;/
Grihmm
12-29-2011, 02:18 AM
[ Ran for 25 Minutes and 42 Seconds ]
[Magic xp : 24327 ]
[Magic : 56794 Mage XP/Hr ]
[Smith : 18217 Smith XP/Hr ]
[Profit : 1071 Gp/Hr ]
[Profit Made : 459 ]
[Bars made : 459 ]
[Debug none ]
[--------------- Cru!z!ns Steel Smelter --------------]
[ Ran for 15 Minutes and 29 Seconds ]
[Magic xp : 16960 ]
[Magic : 65722 Mage XP/Hr ]
[Smith : 21080 Smith XP/Hr ]
[Profit : 1240 Gp/Hr ]
[Profit Made : 320 ]
[Bars made : 320 ]
[Debug none ]
Successfully executed.
The following DTMs were not freed: [2]
[--------------- Cru!z!ns Steel Smelter --------------]
[ Ran for 1 Hours, 48 Minutes and 12 Seconds]
[Magic xp : 127465 ]
[Magic : 70682 Mage XP/Hr ]
[Smith : 22671 Smith XP/Hr ]
[Profit : 1333 Gp/Hr ]
[Profit Made : 2405 ]
[Bars made : 2405 ]
[Debug none ]
Got 94 magic last night. ^.^ Thank you. I tried the Soul Wars bank two more times and it wouldn't work for me. However, varrock west and falador west did.
Kunny
12-29-2011, 03:43 AM
Hey I been tryin to do addy but it doesnt work. Everything starts up fine, logs into rs, opens bank but doesnt withdraw anything. Stuck in a loop of opening and closing bank.
I know for a fact that this script works, i done maybe 30k steel bars already, works well except the lvl up bug. Not sure why this is happening, set up is the same as steel except addy ore in bank slot 1 instead of iron. Any ideas? I really wanted to do addy, steel bars to 99 takes way to long :(
Also, this all worked on the 'UltraSteel CoalBag Heater quick fix' script. When I try the other ones, it doesnt work. Is that the latest script or is there a better one with a fix?
Proggy from steel bars here, just to show that it does work properly:
http://img835.imageshack.us/img835/4913/superheat8.jpg
Def1led
12-29-2011, 04:15 AM
"Error: Exception: Access violation at line 86
The following DTMs were not freed: [SRL - Lamp bitmap, 1]
The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap]"
This my fault? :(
Edit: Nevermind i figured it out.
Edit: Proggy :D Great script man!
[--------------- Cru!z!ns Steel Smelter --------------]
[ Ran for 2 Hours, 36 Minutes and 35 Seconds]
[Magic xp : 129267 ]
[Magic : 49532 Mage XP/Hr ]
[Smith : 15887 Smith XP/Hr ]
[Profit : 18691 Gp/Hr ]
[Profit Made : 48780 ]
[Bars made : 2439 ]
[Debug none ]
Grihmm
12-29-2011, 06:55 AM
[--------------- Cru!z!ns Steel Smelter --------------]
[ Ran for 21 Minutes and 55 Seconds ]
[Magic xp : 25758 ]
[Magic : 70516 Mage XP/Hr ]
[Smith : 22618 Smith XP/Hr ]
[Profit : 1330 Gp/Hr ]
[Profit Made : 486 ]
[Bars made : 486 ]
[Debug: none ]
A forester random appeared. The bot just sat there. I disabled SMART and solved it. It would be useful to make it so that after re-enabling SMART the bot would start again. I think some failsafes would be how to do it, but I don't know how.
nicmoon
12-29-2011, 12:43 PM
[--------------- Cru!z!ns Steel Smelter --------------]
[ Ran for 21 Minutes and 55 Seconds ]
[Magic xp : 25758 ]
[Magic : 70516 Mage XP/Hr ]
[Smith : 22618 Smith XP/Hr ]
[Profit : 1330 Gp/Hr ]
[Profit Made : 486 ]
[Bars made : 486 ]
[Debug: none ]
A forester random appeared. The bot just sat there. I disabled SMART and solved it. It would be useful to make it so that after re-enabling SMART the bot would start again. I think some failsafes would be how to do it, but I don't know how.
I was thinking about this and it's got to be a problem with SRL because once it goes into the procedural for solving the random the scripter has no control at all. In my experience, the best thing to do is just kill the script, solve the random, then start it up again.
sadly for some reason my choossOption isn't working no idea why it was no its not gonna look around on forums see if i can solve this.
I have a update ready just need ChooseOption working
TsterT
12-29-2011, 01:01 PM
sadly for some reason my choossOption isn't working no idea why it was no its not gonna look around on forums see if i can solve this.
I have a update ready just need ChooseOption working
ChooseOption('option');
or
ChooseOption(varName);
It should work.
i know how rofl its just not choosing the option
EuphoriaRush
12-29-2011, 04:44 PM
I'm getting this
Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong xs to a finder function: -16. That is below 0, thus out of bounds. Setting the value to 0 for now
It just goes to my 8th tab and 9th tab(even though i tried taking them off or putting iron ore and coal in their place) and hovers over it repeating those 2 messages.
Can anyone help me? :(
EDIT:Figured it out, It was that I had to close the bank, after I entered the pin.
Nvidia9300
12-29-2011, 04:51 PM
First post ever ftw:
I tried using this script with mithril bars and coalbag, but it fails :(
It withdraws 9 :confused: mithril ores and rest coal, after that it clicks superheat, BUT it keeps clicking the first coal ore :/
It did a few invents manually, this is what I think is the fastest way:
Starting invent:
1st slot coalbag and 2nd slot nature runes (stays the same)
and in the last slot (bottom right) an urn (I use smelting urns, highest f2p)
Starting spellbook:
miscellaneous spells turned OFF, rest turned ON.
1) Full invent coal to fill coal bag
2)10 :thumbsup: mithril ores
3)Rest coal (again withraw all)
4)last mithril ore is in the same spot as the spell, so just click 10 times
5) 1-4 again
6)1-4 again, but only superheat 5 (smelting urn is full after 25 bars)
let it bank and take out a new one, since the inventory is still full it will go to the same spot.
7)repeat.. Note that the next urn will be full after two more banks.. (5+10+10)
Would you consider updating the mithril bar method?:wow:
Thanks
GreenZombie
12-29-2011, 06:04 PM
First post ever ftw:
I tried using this script with mithril bars and coalbag, but it fails :(
It withdraws 9 :confused: mithril ores and rest coal, after that it clicks superheat, BUT it keeps clicking the first coal ore :/
It did a few invents manually, this is what I think is the fastest way:
Starting invent:
1st slot coalbag and 2nd slot nature runes (stays the same)
and in the last slot (bottom right) an urn (I use smelting urns, highest f2p)
Starting spellbook:
miscellaneous spells turned OFF, rest turned ON.
1) Full invent coal to fill coal bag
2)10 :thumbsup: mithril ores
3)Rest coal (again withraw all)
4)last mithril ore is in the same spot as the spell, so just click 10 times
5) 1-4 again
6)1-4 again, but only superheat 5 (smelting urn is full after 25 bars)
let it bank and take out a new one, since the inventory is still full it will go to the same spot.
7)repeat.. Note that the next urn will be full after two more banks.. (5+10+10)
Would you consider updating the mithril bar method?:wow:
Thanks
Will be slower than the current one
Nvidia9300
12-29-2011, 06:17 PM
Will be slower than the current one
How so? :/ How can the 9 ore method be faster then the 10 ore method?
And I can't get the original mithril ore + coal bag method to work, thats why i posted this :p I have to use the non coal bag method with 5 ores/ invent instead...
Amsterdam
12-29-2011, 06:27 PM
my longest run:
[--------------- Cru!z!ns Steel Smelter --------------]
[ Ran for 4 Hours, 39 Minutes and 57 Seconds]
[Magic xp : 270883 ]
[Magic : 58056 Mage XP/Hr ]
[Smith : 18621 Smith XP/Hr ]
[Profit : 1095 Gp/Hr ]
[Profit Made : 5111 ]
[Bars made : 5111 ]
[Debug none ]
Just updated a few things will had detection for already full coalbag next time had a few bugs with it tested for only 40 minutes worked flawless.
Let me know what you guys think hopefully level up bug is fixed...
Nvidia9300
12-29-2011, 08:03 PM
EDIT: now it does withdraw 10 mithril ores, is this because of the small update?
If so, thanks :)
1 more thing tho (again for the mithril + coal option), when it banks the mithril bars, it also banks the last 2 coal ores. This is not very human like..
And how can I use a smelting urn?
Thanks
EDIT: now it does withdraw 10 mithril ores, is this because of the small update?
If so, thanks :)
1 more thing tho (again for the mithril + coal option), when it banks the mithril bars, it also banks the last 2 coal ores. This is not very human like..
And how can I use a smelting urn?
Thanks
I will fix that deposit bug later but about the URN Support i removed awhile ago due non many people actually using it for Urn's
Nvidia9300
12-29-2011, 08:37 PM
I will fix that deposit bug later but about the URN Support i removed awhile ago due non many people actually using it for Urn's
Oh :/ But if you add the urns again you don't even have to fix the deposit bug, since you lose 2 coals with 1 urn.. (1 in the coal bag and 1 in the invent)
+it's some nice xp :) 150 each urn
[Magic xp : 35616 ]
[Magic : 56014 Mage XP/Hr ]
[Smith : 17966 Smith XP/Hr ]
[Profit : 264220 Gp/Hr ]
[Profit Made : 168000 ]
[Bars made : 672 ]
[Making : 1056 Bars/ph ]
[Debug none ]
Kunny
12-29-2011, 10:13 PM
No one replied to my eariler post, is it cause there is no answer?! This is what i had an issue with:
Hey I been tryin to do addy but it doesnt work. Everything starts up fine, logs into rs, opens bank but doesnt withdraw anything. Stuck in a loop of opening and closing bank.
I know for a fact that this script works, i done maybe 30k steel bars already, works well except the lvl up bug. Not sure why this is happening, set up is the same as steel except addy ore in bank slot 1 instead of iron. Any ideas? I really wanted to do addy, steel bars to 99 takes way to long :(
Also, this all worked on the 'UltraSteel CoalBag Heater quick fix' script. When I try the other ones, it doesnt work. Is that the latest script or is there a better one with a fix?
Proggy from steel bars here, just to show that it does work properly:
http://img835.imageshack.us/img835/4913/superheat8.jpg
Amsterdam
12-29-2011, 11:35 PM
I have found a really annoying bug... the script keeps running for a fixed amount of time (like 50 minutes) then it says 'succesfully executed' and it shuts down.. does anyone know how to fix this?
lolcat
12-30-2011, 01:20 AM
It doesnt open to bank! The superheating is fine, but when it needs to bank it trys to search but never does open!
Please re download fixed fixed a few mentioned bugs
NEWTOSIMBA
12-30-2011, 03:01 AM
Very impressive script. I have started a pure and it has 85 magic already. Will post proggy when I return.
lolcat
12-30-2011, 03:40 AM
Please re download fixed fixed a few mentioned bugs
Which one?? It still isnt work :(
andyuk3
12-30-2011, 03:41 AM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 1 Hours, 22 Minutes and 5 Seconds]
[Magic xp : 103615 ]
[Magic : 75738 Mage XP/Hr ]
[Smith : 24293 Smith XP/Hr ]
[Profit : 142903 Gp/Hr ]
[Profit Made : 195500 ]
[Bars made : 1955 ]
[Making : 1429 Bars/ph ]
[Debug none
lolcat
12-30-2011, 03:47 AM
When its trying to click on any bank even soul wars this pops up in the debug :(
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong xs to a finder function: -16. That is b
elow 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: Warning! You passed a wrong ys to a finder function: -5. That is be
low 0, thus out of bounds. Setting the value to 0 for now.
formWriteln: failed Banking sorry.......
Amsterdam
12-30-2011, 04:35 AM
[--------------- Cru!z!ns Steel Smelter --------------]
[ Ran for 4 Hours, 39 Minutes and 26 Seconds]
[Magic xp : 263145 ]
[Magic : 56502 Mage XP/Hr ]
[Smith : 18123 Smith XP/Hr ]
[Profit : 1066 Gp/Hr ]
[Profit Made : 4965 ]
[Bars made : 4965 ]
[Debug none
Junji
12-31-2011, 05:16 AM
Couldn't you use this as a base for an auto alcher or is it different?
lolcat
12-31-2011, 05:49 AM
It simply doesnt open bank...just try to fix that please :(
Junji
12-31-2011, 07:32 AM
Oh and heres my progress report!
[--------------- Cru!z!ns Steel Smelter --------------]
[ Ran for 57 Minutes and 27 Seconds ]
[Magic xp : 50297 ]
[Magic : 52529 Mage XP/Hr ]
[Smith : 16849 Smith XP/Hr ]
[Profit : 198224 Gp/Hr ]
[Profit Made : 189800 ]
[Bars made : 949 ]
[Debug none ]
Chris
12-31-2011, 09:34 AM
Couldn't you use this as a base for an auto alcher or is it different?
the same methods to find the spell and the item could be used but an auto alcher wont need this amount of code, banking is the most important in this script, and you wont need that with alching
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 19 Minutes and 2 Seconds ]
[Magic xp : 24274 ]
[Magic : 76520 Mage XP/Hr ]
[Smith : 24544 Smith XP/Hr ]
[Profit : 171810 Gp/Hr ]
[Profit Made : 54502 ]
[Bars made : 458 ]
[Making : 1443 Bars/ph ]
[Debug none ]
With a basic run trying :)
Slowly building up :P
It simply doesnt open bank...just try to fix that please :(
Sorry mate but its no fault with my script my banking is working great and seems like your the only person having this issue its looks to me thats its todo with your setup.
What you can try is readingthe simba tutorials and making sure your setting and updating simba correctly
lolcat
01-01-2012, 06:12 AM
Sorry mate but its no fault with my script my banking is working great and seems like your the only person having this issue its looks to me thats its todo with your setup.
What you can try is readingthe simba tutorials and making sure your setting and updating simba correctly
Will do :(
MJF94
01-01-2012, 05:28 PM
Testing this now :D
Testing this now :D
Don't forget to post me a proggy
Chris
01-01-2012, 09:21 PM
The script did 1100 mithril bars but my pc kind of "crashed" so i dont have a proggie..
I will use it again and post a proggie tomorrow :)
dcraig1313
01-01-2012, 11:10 PM
SO i tried using this and SMART didnt pop up and it took control of the mouse on my main comp and didnt do nething
Chris
01-01-2012, 11:18 PM
Dcraig1313, did you follow all instructions?
"Also start with an empty coal bag
if you wont to is smart remove //
off this //{$I SRL/SRL/misc/
smart.scar} on line 2"
If you did this, smart should pop up :)
Kunny
01-01-2012, 11:26 PM
SO i tried using this and SMART didnt pop up and it took control of the mouse on my main comp and didnt do nething
Same thing happened to me when I tried using simba 0.5a script. Someone explain how its supposed to work? Atm im using the quick fix script, that works fine but You cannot smelt addy bars.
Also I asked twice about that, smelting addy bars but no one replied!
Kunny
01-01-2012, 11:30 PM
Dcraig1313, did you follow all instructions?
"Also start with an empty coal bag
if you wont to is smart remove //
off this //{$I SRL/SRL/misc/
smart.scar} on line 2"
If you did this, smart should pop up :)
So your saying I should just delete that line? The instructions dont exactally make much sense lol
Edit: figured it out, comparing it to his old scripts!
Amsterdam
01-01-2012, 11:35 PM
Happy new year guys! this script works great
Same thing happened to me when I tried using simba 0.5a script. Someone explain how its supposed to work? Atm im using the quick fix script, that works fine but You cannot smelt addy bars.
Also I asked twice about that, smelting addy bars but no one replied!
Try not to double post
have updated first post to make it more clear
also you should try and figure out how to add them yourself its all there for you just alter other procedure read the code try to understand it.
Happy new year Amsterdam :D
nicmoon
01-02-2012, 04:34 AM
Can you release versions that don't contain the script or something. At the very least can you pull the data into variables so we don't have to create our own? I mean sure it only took me like 10-15 minutes to sort through all the code, and will probably be less time now that I know what to look for. But it also seems like a waste of some memory to leave the form inited anyway.
This is what I ended up with for my player variable code block, and I am very happy with it.
NumberOfPlayers(1);
CurrentPlayer := 0;
Players[0].Name := '';
Players[0].Pass := '';
Players[0].Pin := '';
Players[0].Active := True;
TBarType := 1; //0: iron, 1: steel, 2: mith, 3: addy
iHowManyBars:= 4000; //how many bars to make
iProfit := 100; //profit per bar
useCoalBag := False;
whatBank := 'sw'; // feb (Falador East Bank), fwb (Falador West Bank), veb (Varrock East Bank), vwb (Varrock West Bank), db (Draynor Bank), eb (Edgeville Bank), akb (Al-Kharid Bank)
Another thing I noticed in OpenSwBank, don't you think 35000 is way too long? I would imagine 10000 would get the job done fine, and speed up the average bars/ph. But the changes you made to the function seem to have made a big difference!
Thanks for making the script though! I would love to code my own, but it's a combination of me being too lazy and only know DTMs for object finding =D.
Will take up more time I don't have to maintain to separate versions of the script I added the form on a request it makes it a lot more user friendly
Failsafes are that long because some users where reporting them being too short so I just set em all high after you get familiar with the code you all can adjust to your own personal tuning to the waits timers ect....
nicmoon
01-02-2012, 04:39 PM
I can understand why some people would want the form - despite it being a lot of extra work instead of learning how to do it the simple way that will save...but you could make it a lot simpler for those of us that don't like it by pulling from the data from the form on button press and saving to variables. I think it would make the code look a lot cleaner too.
Still up to you I guess though =)
It clicks on Nomad in SW a LOT. Quite a good script, though.
Chris
01-02-2012, 08:05 PM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 33 Minutes and 43 Seconds ]
[Magic xp : 22207 ]
[Magic : 39518 Mage XP/Hr ]
[Smith : 12675 Smith XP/Hr ]
[Profit : 7456 Gp/Hr ]
[Profit Made : 4190 ]
[Bars made : 419 ]
[Making : 745 Bars/ph ]
[Debug none ]
Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong xs to a finder function: -16. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong xs to a finder function: -16. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong xs to a finder function: -16. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong xs to a finder function: -16. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong xs to a finder function: -16. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong xs to a finder function: -16. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong xs to a finder function: -16. That is below 0, thus out of bounds. Setting the value to 0 for now.
Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
Couldn't find the bank. Exiting
It still stood on the same spot at Varrock east bank, I dont know what exactly happened but it still had 2 mithril ores in the inventory left to superheat.
Anyways, 30 minute proggy :D
Amsterdam
01-02-2012, 08:50 PM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 5 Hours, 21 Minutes and 54 Seconds]
[Magic xp : 290970 ]
[Magic : 54234 Mage XP/Hr ]
[Smith : 17396 Smith XP/Hr ]
[Profit : 1023 Gp/Hr ]
[Profit Made : 5490 ]
[Bars made : 5490 ]
[Making : 1023 Bars/ph ]
[Debug none ]
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 5 Hours, 31 Minutes and 52 Seconds]
[Magic xp : 279999 ]
[Magic : 50622 Mage XP/Hr ]
[Smith : 16237 Smith XP/Hr ]
[Profit : 955 Gp/Hr ]
[Profit Made : 5283 ]
[Bars made : 5283 ]
[Making : 955 Bars/ph ]
[Debug none ]
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 6 Hours, 1 Minutes and 52 Seconds]
[Magic xp : 336020 ]
[Magic : 55714 Mage XP/Hr ]
[Smith : 17870 Smith XP/Hr ]
[Profit : 1051 Gp/Hr ]
[Profit Made : 6340 ]
[Bars made : 6340 ]
[Making : 1051 Bars/ph ]
[Debug none ]
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 4 Hours, 49 Minutes and 9 Seconds]
[Magic xp : 249895 ]
[Magic : 51854 Mage XP/Hr ]
[Smith : 16632 Smith XP/Hr ]
[Profit : 978 Gp/Hr ]
[Profit Made : 4715 ]
[Bars made : 4715 ]
[Making : 978 Bars/ph ]
[Debug none ]
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 5 Hours, 32 Minutes and 41 Seconds]
[Magic xp : 214862 ]
[Magic : 38750 Mage XP/Hr ]
[Smith : 12429 Smith XP/Hr ]
[Profit : 731 Gp/Hr ]
[Profit Made : 4054 ]
[Bars made : 4054 ]
[Making : 731 Bars/ph ]
[Debug none ]
Some proggies :D! keep up the good work cruizin!
@Amsterdam
loving the porggy's buddy :D
@chris
sorry bud not sure why that happened it means what it was trying to find wasn't in the right bounds or somet
Chris
01-02-2012, 10:18 PM
@Amsterdam
loving the porggy's buddy :D
@chris
sorry bud not sure why that happened it means what it was trying to find wasn't in the right bounds or somet
Hmm ok ill try to get some better proggies soon :)
Amsterdam
01-02-2012, 10:27 PM
@Amsterdam
loving the porggy's buddy :D
@chris
sorry bud not sure why that happened it means what it was trying to find wasn't in the right bounds or somet
The least i can do to help :D but i have a little problem; the script is running slow, only 47k xp/h; rs isn't lagging or anything.. do you know how to fix this?
The least i can do to help :D but i have a little problem; the script is running slow, only 47k xp/h; rs isn't lagging or anything.. do you know how to fix this?
yeah i noticed that will into for tomorrow
Amsterdam
01-02-2012, 11:09 PM
yeah i noticed that will into for tomorrow
thanks man, im on my road for 99 magic with this script! almost lvl 94 now:spot:
lilcmp1
01-03-2012, 02:47 PM
Your script is boss
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 4 Hours, 28 Seconds ]
[Magic xp : 195888 ]
[Magic : 48876 Mage XP/Hr ]
[Smith : 15677 Smith XP/Hr ]
[Profit : 46110 Gp/Hr ]
[Profit Made : 184800 ]
[Bars made : 3696 ]
[Making : 922 Bars/ph ]
[Debug none ]
butterlyr
01-03-2012, 03:12 PM
I agree with the comment above, got me 94 mage , appreciate it.
pierre
01-03-2012, 03:15 PM
[ Ran for 12 Minutes and 53 Seconds ]
[Magic xp : 12879 ]
[Magic : 59979 Mage XP/Hr ]
[Smith : 19238 Smith XP/Hr ]
Dunno the profit
[Bars made : 243 ]
[Making : 1131 Bars/ph ]
[Debug none ]
Awesome script, was bit hard to set it up though, but love it :D
Mar-TINO
01-03-2012, 06:40 PM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 4 Hours, 40 Minutes and 20 Seconds]
[Magic xp : 270459 ]
[Magic : 57886 Mage XP/Hr ]
[Smith : 18567 Smith XP/Hr ]
[Profit : -5235 Gp/Hr ]
[Profit Made : 1168587 ]
[Bars made : 5103 ]
[Making : 1092 Bars/ph ]
Thanks Cru1z1n
Chris
01-03-2012, 08:29 PM
Some proggies :D
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 20 Minutes and 30 Seconds ]
[Magic xp : 17066 ]
[Magic : 49949 Mage XP/Hr ]
[Smith : 16021 Smith XP/Hr ]
[Profit : 47121 Gp/Hr ]
[Profit Made : 16100 ]
[Bars made : 322 ]
[Making : 942 Bars/ph ]
[Debug none ]
This proggy stopped when I maximized SMART, probably lagged due to that.
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 1 Hours, 7 Minutes and 13 Seconds]
[Magic xp : 51940 ]
[Magic : 46363 Mage XP/Hr ]
[Smith : 14871 Smith XP/Hr ]
[Profit : 43739 Gp/Hr ]
[Profit Made : 49000 ]
[Bars made : 980 ]
[Making : 874 Bars/ph ]
[Debug none ]
Same reason as the first proggy
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 30 Minutes and 33 Seconds ]
[Magic xp : 21518 ]
[Magic : 42261 Mage XP/Hr ]
[Smith : 13555 Smith XP/Hr ]
[Profit : 23921 Gp/Hr ]
[Profit Made : 12180 ]
[Bars made : 406 ]
[Making : 797 Bars/ph ]
[Debug none ]
This one was stopped by the forester random.
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 1 Hours, 41 Minutes and 44 Seconds]
[Magic xp : 63971 ]
[Magic : 37728 Mage XP/Hr ]
[Smith : 12101 Smith XP/Hr ]
[Profit : 21355 Gp/Hr ]
[Profit Made : 36210 ]
[Bars made : 1207 ]
[Making : 711 Bars/ph ]
[Debug none ]
And this proggy got stuck with a full inventory of coal once I maximized SMART.
tarajunky
01-03-2012, 10:44 PM
This proggy stopped when I maximized SMART, probably lagged due to that.
Pro-tip: Pause the script in Simba before maximizing SMART, then after you're done checking up on it, continue running the script.
Uraganass
01-03-2012, 11:11 PM
Very nice script. Thank you :spot:
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 50 Minutes and 37 Seconds ]
[Magic xp : 53424 ]
[Magic : 63327 Mage XP/Hr ]
[Smith : 20312 Smith XP/Hr ]
[Profit : 125460 Gp/Hr ]
[Profit Made : 105840 ]
[Bars made : 1008 ]
[Making : 1194 Bars/ph ]
[Debug none ]
pierre
01-03-2012, 11:37 PM
[--------------- Cru!z!ns Steel Smelter --------------]
[ Ran for 1 Hours, 7 Minutes and 14 Seconds]
[Magic xp : 89199 ]
[Magic : 79602 Mage XP/Hr ]
[Smith : 25532 Smith XP/Hr ]
[Profit : 112645 Gp/Hr ]
[Profit Made : 126225 ]
[Bars made : 1683 ]
[Debug none ]
Awesome, speed could be faster but my internet didn't allow it :D
loving the proggy's guys will have some time in the afternoon i'll see what i can do to the speed again i slowed it down slightly last time
quazzymodem
01-04-2012, 12:06 AM
Hot off the press....
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 1 Hours, 21 Minutes and 46 Seconds]
[Magic xp : 98951 ]
[Magic : 72609 Mage XP/Hr ]
[Smith : 23289 Smith XP/Hr ]
[Profit : -435683 Gp/Hr ]
[Profit Made : 599307 ]
[Bars made : 1867 ]
[Making : 1369 Bars/ph ]
[Debug none ]
still running, I'ts just I only have another 2k or so bars to do, but that is out of 40,000 bars in my last total cycle before buying more supplies.
rickarja
01-04-2012, 01:34 AM
The script doesnt work in the varrock banks its all off set the cursor cant find the bank and then it goes to the top right of the screen had it working the one day now it doesnt work.
doublex8
01-04-2012, 07:17 AM
I get an out of range error at line 204, I think it's the form.
Chris
01-04-2012, 10:23 AM
Pro-tip: Pause the script in Simba before maximizing SMART, then after you're done checking up on it, continue running the script.
Thanks for the tip, I might get one 4-hour proggy today instead of four +-1-hour proggies :D
MJF94
01-04-2012, 12:36 PM
I just woke up, didn't watch the script at all!
I was like whoa!!! This is the best proggy I've seen for this script!
Anyone jelly?
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 5 Hours, 58 Minutes and 30 Seconds]
[Magic xp : 504136 ]
[Magic : 84374 Mage XP/Hr ]
[Smith : 27063 Smith XP/Hr ]
[Profit : 79598 Gp/Hr ]
[Profit Made : 475600 ]
[Bars made : 9512 ]
[Making : 1591 Bars/ph ]
[Debug none ]
I just woke up, didn't watch the script at all!
I was like whoa!!! This is the best proggy I've seen for this script!
Anyone jelly?
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 5 Hours, 58 Minutes and 30 Seconds]
[Magic xp : 504136 ]
[Magic : 84374 Mage XP/Hr ]
[Smith : 27063 Smith XP/Hr ]
[Profit : 79598 Gp/Hr ]
[Profit Made : 475600 ]
[Bars made : 9512 ]
[Making : 1591 Bars/ph ]
[Debug none ]
loving it buddy
@doublex8
i have fixed a few things with the form on next version i still forgot to Free it last time.
@rickarja
not had that problem yeat will look into while i test the new version when ready.
thanks for the feedback guys...
rickarja
01-04-2012, 01:40 PM
No prob just wanted to get my magic up the cheapest way and none of the heaters seem to work and maskes me mad and msi doesnt work at all so i used urs but it doesnt work for me. guess the world is against me.
jayanth
01-04-2012, 02:07 PM
can anybody pls tell me how can i stop it from taking breaks pls.
taking breaks?
@rickarja make sure you have simba/srl all up to date then try again
jayanth
01-04-2012, 02:18 PM
k thx,but pls modify ore detector sometimes its not taking coal fully.So making some iron bars too so pls fix it.
Sometimes it stopping.
Amsterdam
01-04-2012, 04:46 PM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 10 Hours, 15 Minutes and 55 Seconds]
[Magic xp : 566676 ]
[Magic : 55203 Mage XP/Hr ]
[Smith : 17706 Smith XP/Hr ]
[Profit : -53727 Gp/Hr ]
[Profit Made : 641520 ]
[Bars made : 10692 ]
[Making : 1041 Bars/ph ]
[Debug none ]
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 6 Hours, 2 Minutes and 21 Seconds]
[Magic xp : 339041 ]
[Magic : 56140 Mage XP/Hr ]
[Smith : 18007 Smith XP/Hr ]
[Profit : 63555 Gp/Hr ]
[Profit Made : 383820 ]
[Bars made : 6397 ]
[Making : 1059 Bars/ph ]
[Debug none ]
:)
rickarja
01-04-2012, 04:47 PM
i do have it all up to date it just doesnt work for me i guess.
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 10 Hours, 15 Minutes and 55 Seconds]
[Magic xp : 566676 ]
[Magic : 55203 Mage XP/Hr ]
[Smith : 17706 Smith XP/Hr ]
[Profit : -53727 Gp/Hr ]
[Profit Made : 641520 ]
[Bars made : 10692 ]
[Making : 1041 Bars/ph ]
[Debug none ]
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 6 Hours, 2 Minutes and 21 Seconds]
[Magic xp : 339041 ]
[Magic : 56140 Mage XP/Hr ]
[Smith : 18007 Smith XP/Hr ]
[Profit : 63555 Gp/Hr ]
[Profit Made : 383820 ]
[Bars made : 6397 ]
[Making : 1059 Bars/ph ]
[Debug none ]
:)
Master of proggy's **** me man you have r**p*d this script.
:D you've got more than me outa this script :D
@rickarja sorry man i will be updating this in the next day or too when after i've fixed a few more things
Tickyy
01-04-2012, 04:56 PM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 10 Hours, 15 Minutes and 55 Seconds]
[Magic xp : 566676 ]
[Magic : 55203 Mage XP/Hr ]
[Smith : 17706 Smith XP/Hr ]
[Profit : -53727 Gp/Hr ]
[Profit Made : 641520 ]
[Bars made : 10692 ]
[Making : 1041 Bars/ph ]
[Debug none ]
This is probably a fake, if not, then please show us how you made this progress report.
Amsterdam
01-04-2012, 04:57 PM
hell yes! :D all thanks to you man, got 96 magic now! But my new run that i just started runs extremely slow; around 47k xp/h, do you know how to fix this =D?
Amsterdam
01-04-2012, 04:58 PM
This is probably a fake, if not, then please show us how you made this progress report.
it's not fake... I paused the script; logged out before 6 hours; logged in and started the script again :stirthepot:
Chris
01-04-2012, 08:03 PM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 1 Hours, 29 Minutes and 39 Seconds]
[Magic xp : 70649 ]
[Magic : 47283 Mage XP/Hr ]
[Smith : 15166 Smith XP/Hr ]
[Profit : 26764 Gp/Hr ]
[Profit Made : 39990 ]
[Bars made : 1333 ]
[Making : 892 Bars/ph ]
[Debug none ]
A little proggy compared to Amsterdam his :o
Reached my goal of 72 smithing, probably wont use this script again.
Thank you very much, repped you :D
Could you possibly add an option of how fast you want it to go? I remember using an earlier version that was much faster, but it didn't look human.
Some people such as myself think the risk is worth the reward.
shadowmarkus
01-05-2012, 12:32 AM
This script needs breaking, bad.
Please add it.
So I can do 10 hour runs overnight :P
Shady89
01-05-2012, 07:00 AM
why does '' UltraSteel CoalBag Heater quick fix.simba'' only work for me? the newer versions dont load rs?
Chris
01-05-2012, 07:44 AM
Shady69, if you wont to use smart
remove // off this: //{$I SRL/SRL/
misc/smart.scar} on line 2
shadowmarkus
01-05-2012, 01:09 PM
Okay, used it overnight, 3 things I would add:
Breaks.
Change your screenshot, so it shows double the coal to the iron (I'm not familiar with smithing, so I assumed your screenshot showed the correct ratio)
Objects. To avoid a whole night of making just iron bars, and withdrawing oak logs instead of coal... xD
MJF94
01-05-2012, 01:15 PM
All my proggys turn up this good!!
Damn.. Settings are coal bag, steel bars, magic tab all set to regular (level order, none hidden) and I'm at soulwars.
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 5 Hours, 27 Minutes and 11 Seconds]
[Magic xp : 477530 ]
[Magic : 87571 Mage XP/Hr ]
[Smith : 28088 Smith XP/Hr ]
[Profit : 82614 Gp/Hr ]
[Profit Made : 450500 ]
[Bars made : 9010 ]
[Making : 1652 Bars/ph ]
Shady89
01-05-2012, 01:59 PM
Okay, used it overnight, 3 things I would add:
Breaks.
Change your screenshot, so it shows double the coal to the iron (I'm not familiar with smithing, so I assumed your screenshot showed the correct ratio)
Objects. To avoid a whole night of making just iron bars, and withdrawing oak logs instead of coal... xD
it tells you on the first page how to setup and you've been here since 2008 and didnt know/care to look?
Shady69, if you wont to use smart
remove // off this: //{$I SRL/SRL/
misc/smart.scar} on line 2
thanks :)
shadowmarkus
01-05-2012, 02:02 PM
it tells you on the first page how to setup and you've been here since 2008 and didnt know/care to look?
thanks :)
I know how to set it up, did you even read my post? - The only reason objects would be useful, is when it runs out, or when people get the coal/iron ratio wrong. Then it will start taking whatever item was next to the coal. Which in my case, was oak logs.
Shady89
01-05-2012, 02:14 PM
I know how to set it up, did you even read my post? - The only reason objects would be useful, is when it runs out, or when people get the coal/iron ratio wrong. Then it will start taking whatever item was next to the coal. Which in my case, was oak logs.
if someone hasnt got the common sense to research whats needed to make steel bars and how many of each then really they shouldnt be here. I aint played more then a week of rs legit in the last 7 years and i know whats needed.
shadowmarkus
01-05-2012, 02:18 PM
if someone hasnt got the common sense to research whats needed to make steel bars and how many of each then really they shouldnt be here. I aint played more then a week of rs legit in the last 7 years and i know whats needed.
It has nothing to do with common sense, I just assumed the picture he showed was the right ratio :)
And I know it was my fault for not checking it.
That doesn't change the fact that the script would benefit from having objects, and that the thread would benefit if he changed the picture so others wouldn't make the same mistake... :)
You can't first complain I didn't follow the instruction on the first page, and then afterwards complain that I followed it xD
First I lol'd so much reading this.
Without sounding too harsh but before you attempt to bot anything for long periods make sure you understand how to fill out the settup.
I added a from to make this easier but make sure you have the right materials to the amount of bars you have set it to make that bank pic shows you how to setup for any bar.
But next time you download a script don't just download without even reading thread and posting silly questions that the answer is already there for.
Edit: new version will be out sometime today will be adding and auto updater to it to help me fix bugs a lot easier
shadowmarkus
01-05-2012, 05:09 PM
First I lol'd so much reading this.
Without sounding too harsh but before you attempt to bot anything for long periods make sure you understand how to fill out the settup.
I added a from to make this easier but make sure you have the right materials to the amount of bars you have set it to make that bank pic shows you how to setup for any bar.
But next time you download a script don't just download without even reading thread and posting silly questions that the answer is already there for.
Edit: new version will be out sometime today will be adding and auto updater to it to help me fix bugs a lot easier
You obviously misunderstood me aswell.
I did read your thread, and I did setup the script correctly. -.-
And I didn't ask any silly questions, so I doubt you're even talking to me... Are you?
Because I DID setup the script like in your picture, and your picture shows that you need double the iron to coal. When it's actually opposite.
But as I said, my suggestions are: Breaks (A must have for longer runs), objects (Easy to implent, and makes the script more stable, and it can stop when it's out of materials, instead of trying to cast superheat on logs :P)
@shadowmarkus
I slightly misunderstood you only because of the errors you where getting made me think you had not read the the first post at all.
Also the pic is only there to show where to place your items in your bank never crossed my mind that someone would make that mistake.
But anyway i don't understand what you mean by objects but if you meen a check to see if you withdrawn the right items yeah i could add that but if you had set the script up right it would never of ran out of ores and started to withdraw other items... new
@everyone
version will be out very soon
shadowmarkus
01-05-2012, 10:42 PM
@shadowmarkus
I slightly misunderstood you only because of the errors you where getting made me think you had not read the the first post at all.
Also the pic is only there to show where to place your items in your bank never crossed my mind that someone would make that mistake.
But anyway i don't understand what you mean by objects but if you meen a check to see if you withdrawn the right items yeah i could add that but if you had set the script up right it would never of ran out of ores and started to withdraw other items... new
@everyone
version will be out very soon
Alright. But, by objects, I mean, instead of just coding it to withdraw whatever items are in the first 2 slots, code it to find the bitmap, and something named "coal" and "iron"..
And, even if set up correctly, it will run out at some point, at SW, and then It'll start superheating whatever is next in the bank :P
But maybe using DTMs would be too slow in the long run. But you could add a DTM check, every 10 minutes, just to make sure it's actually withdrawing the right items, and it has not run out..
You could make it do it after each break (if you add breaks)
Shady89
01-05-2012, 10:46 PM
cruiz when will rune be added or wont it :) love the script mate.
shadowmarkus
01-05-2012, 10:53 PM
cruiz when will rune be added or wont it :) love the script mate.
Currently there's no actual check to see what ores you're using. You could just switch the iron with rune ore, I think. Not entirely sure though. Haven't studied the script that much :)
Shady89
01-06-2012, 12:03 AM
Currently there's no actual check to see what ores you're using. You could just switch the iron with rune ore, I think. Not entirely sure though. Haven't studied the script that much :)
cant because you can only make 3 bars per invent with rune , it would withdraw too many rune ores to coal.
shadowmarkus
01-06-2012, 12:39 AM
cant because you can only make 3 bars per invent with rune , it would withdraw too many rune ores to coal.
You can modify the script yourself if you want. Quite simple really, just find one of the other bars in the script, lets say mithril.
Just take this part
2:begin //mith bar
if (UseCoalBag.Text='yes') then
begin
Withdraw(0,0,10);
GetCoal;
end;
if (UseCoalBag.Text='no') then
begin
Withdraw(0,0,5);
GetCoal;
end;
end;
and change it to
2:begin //mith bar
if (UseCoalBag.Text='yes') then
begin
Withdraw(0,0,10);
GetCoal;
end;
if (UseCoalBag.Text='no') then
begin
Withdraw(0,0,3);
GetCoal;
end;
end;
That way it withdraws 3, of whatever ore you use. (Just remember to set it to Mithril, in the form.
Or you could add the feature yourself, if you really feel like it ;)
just updated nothing major added auto updater few other things will be updating more tomorrow
@shadowmarkus
you must of misunderstood me.
Why would it keep on going at soulwars like i said set your bar total and i wont need to add that fail safe is pretty un needed if you just set you bar limmit
shadowmarkus
01-06-2012, 12:49 AM
just updated nothing major added auto updater few other things will be updating more tomorrow
@shadowmarkus
you must of misunderstood me.
Why would it keep on going at soulwars like i said set your bar total and i wont need to add that fail safe is pretty un needed if you just set you bar limmit
Well, when I do a high amount of anything, I don't check exactly how many I plan on making, I just write 99999, as in "Continue till you run out"... And when that happens, the bot is screwed.. Consider it a failsafe.. :)
Looking forward to more updates. Your script got me 50-71 mage so far!
MJF94
01-06-2012, 01:16 AM
80 - 86 in 3 days, thanks!
Reminisce
01-06-2012, 03:58 AM
This won't select the coal or my coal bag now.
efeller
01-06-2012, 08:45 AM
it just hovers over the coal and will not withdraw it.
LemonHaze
01-06-2012, 10:30 AM
yhea, doesn't work, it just hovers the coal like the guy above me said.
Amsterdam
01-06-2012, 11:56 AM
62-98 in 3 weeks!!!!! 1.1M xp till 99! will let you know when i get 99 cruizin! thank you so much for this script.
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 5 Hours, 42 Minutes and 29 Seconds]
[Magic xp : 313389 ]
[Magic : 54902 Mage XP/Hr ]
[Smith : 17610 Smith XP/Hr ]
[Profit : 19682 Gp/Hr ]
[Profit Made : 112347 ]
[Bars made : 5913 ]
[Making : 1035 Bars/ph ]
[Debug none ]
LemonHaze
01-06-2012, 01:23 PM
62-98 in 3 weeks!!!!! 1.1M xp till 99! will let you know when i get 99 cruizin! thank you so much for this script.
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 5 Hours, 42 Minutes and 29 Seconds]
[Magic xp : 313389 ]
[Magic : 54902 Mage XP/Hr ]
[Smith : 17610 Smith XP/Hr ]
[Profit : 19682 Gp/Hr ]
[Profit Made : 112347 ]
[Bars made : 5913 ]
[Making : 1035 Bars/ph ]
[Debug none ]
why does it work for you?
shadowmarkus
01-06-2012, 02:43 PM
why does it work for you?
Maybe he's using an older version?
LemonHaze
01-06-2012, 02:55 PM
yhea, older versions work, thank you :)
@lordvolt
Yeah amsterdam is using an earlier version
Not sure why that's started to happen must be something todo with changing to srl5 don't worry tho just use version 0.5a for now will have fixed tonight when I get home.
All working and up to date please re start your script and use the new version it downlaods
LemonHaze
01-06-2012, 04:46 PM
@lordvolt
Yeah amsterdam is using an earlier version
Not sure why that's started to happen must be something todo with changing to srl5 don't worry tho just use version 0.5a for now will have fixed tonight when I get home.
All working and up to date please re start your script and use the new version it downlaods
v0.5 works very good! great script!
mickeymouse
01-06-2012, 09:24 PM
working great cruzin ( ver. 5a ) will post an 6-10 hours proggy.
btw guys please stop dropping the price of steel bars. raise it up..1247 ea
has no1 tried the new version it should all be working now
efeller
01-06-2012, 10:53 PM
I tried the new version and it still hovered over the coal, i then tried the version 0.5a and its working good. Thanks for the awesome script
Amsterdam
01-06-2012, 11:39 PM
I'm using 5a! it works great; last 12k steel bars then i'll post a 99 pic :D tysm cruizin! i owe you big time :p
pierre
01-06-2012, 11:55 PM
working great cruzin ( ver. 5a ) will post an 6-10 hours proggy.
btw guys please stop dropping the price of steel bars. raise it up..1247 ea
I always sell bit above G.E. price. But what the hell, dropping so fast :s.
lilcmp1
01-07-2012, 03:08 AM
Sorry Cruzin, didn't work for me me either, hoover coal - the new version that is.
As for steel bars prices if people would be patient they would sell within a few hours at mid or above. Quit undercutting it! your only hurting yourself! be patient! lol
Aaaaa the new version nor the old versions are working for me :sadfais
mickeymouse
01-07-2012, 04:05 AM
i tried to do the 8 hours proggie today, but not easy since random keep popping up i had to stop in middle and do them.
last time i was in shower, came out to checked on random, no random, back to shower, finished shower,came out immediately to check ( i was naked ) and it fail the twin evil sister one and logged out.
btw is there a line in script that i can make it "not worry about random" and just wait for me to solve it instead?
and yea i know everytime theres a realease about any "money making script" on certain items like flax, plank etc.. those items price drop fast.. this's not cool. and at the same time the iron ores dudes noticed our need, they raised it up.
pierre
01-07-2012, 09:46 AM
Sorry Cruzin, didn't work for me me either, hoover coal - the new version that is.
As for steel bars prices if people would be patient they would sell within a few hours at mid or above. Quit undercutting it! your only hurting yourself! be patient! lol
Aaaaa the new version nor the old versions are working for me :sadfais
There are other bots too! Autoclickers like mouse rec (something called like that)
Advice about the mithril smelthing => when taking new ores out of bank. You shouldn't put the 2 coals that remain in your bag back in the bank. Because a second later you take it right back to fill up your coal bag. (is bit less time lost :D)
kappe
01-07-2012, 10:28 AM
+1 on cant withdraw coal
It's probably not your script though, I've got the same thing with RoboHeat
Also tried setting up the old version for SRL5 and it just withdraws the iron and makes iron bars
Amsterdam
01-07-2012, 02:14 PM
http://img403.imageshack.us/img403/5551/31780017.th.png (http://imageshack.us/photo/my-images/403/31780017.png/)
Uploaded with ImageShack.us (http://imageshack.us)
http://img403.imageshack.us/img403/5551/31780017.th.png (http://imageshack.us/photo/my-images/403/31780017.png/)
Uploaded with ImageShack.us (http://imageshack.us)
Hey congrats man :D how many level did you gain from this script?
shadowmarkus
01-07-2012, 02:38 PM
( i was naked )
http://www.kitp.ucsb.edu/sites/default/files/kitp/DavidGross.jpg
LemonHaze
01-07-2012, 03:15 PM
http://www.kitp.ucsb.edu/sites/default/files/kitp/DavidGross.jpg
haha :D
MJF94
01-07-2012, 03:39 PM
Hmm.. Should I update my simba?
Amsterdam
01-07-2012, 04:31 PM
Hey congrats man :D how many level did you gain from this script?
ty :D it took me from 62-99 so 37 lvls:spot:
g1u3d
01-07-2012, 08:19 PM
[Error] (491:14): Unknown identifier 'SRL_ANGLE_HIGH' at line 490
Compiling failed.
help?
AnonK
01-07-2012, 08:29 PM
What version of Simba should I use with the 0.5, because the latest release of this script does not seem to work with Simba 5.
Grihmm
01-07-2012, 09:07 PM
[Error] (491:14): Unknown identifier 'SRL_ANGLE_HIGH' at line 490
Compiling failed.
help?
You need to update to SRL5.:google:
I edited this to make rune bars. Doing about 42k smithing exp per/hour, not bad.
Could add gold bars, that's massively fast smithing experience. Huge cost though.
PatDuffy
01-08-2012, 03:24 AM
I edited this to make rune bars. Doing about 42k smithing exp per/hour, not bad.
Could add gold bars, that's massively fast smithing experience. Huge cost though.
Do rune bars make or lose money? I know I can check the Wiki, but I'm feeling extremely lazy tonight.
/Ontopic- Your doing a great job dealing with the community attempting and failing to use your script Cruzin :p Your patience is noted.
Makes about 200gp per bar, going by mid pricing. If he released a rune version, prices would drop immensely I'm sure.
It's not a great method. I'm making 850 bars an hour, which would come out to 170k p/hour. That's using coal bag. But hey, I'm making money and getting some fast smithing experience. I'll make about 60m hitting 99 smithing.
PatDuffy
01-08-2012, 03:31 AM
Makes about 200gp per bar, going by mid pricing. If he released a rune version, prices would drop immensely I'm sure.
It's not a great method. I'm making 850 bars an hour, which would come out to 170k p/hour. That's using coal bag. But hey, I'm making money and getting some fast smithing experience. I'll make about 60m hitting 99 smithing.
I was just wondering because 45k Smithing exp/hour is nothing to sneer at. It's not like I can make them anyway.
/end Offtopic
Tocholoko
01-08-2012, 03:37 AM
how do i setup without smart? because when i remove the '//' at line 2 i get an error .
Grihmm
01-08-2012, 04:14 AM
Just take out the {DEFINE SMART}. You will have to open the RS window though. It isn't automatic unless you put in "Activate Client" after SetupSRL.
stuffs
01-08-2012, 04:18 AM
I edited this to make rune bars. Doing about 42k smithing exp per/hour, not bad.
Could add gold bars, that's massively fast smithing experience. Huge cost though.
45k smithing exp and 170k gp per hour is pretty damn good. Looks like I should start doing rune then. Thanks for the tip ;).
Grihmm
01-08-2012, 04:26 AM
One thing I would request in future releases is an easy option to disable the form. But otherwise, your script is perfect at what it does.
No problem buddy! It brings magic exp p/h down considerably, but if you're going for 99 smith you'll get there anyway.
Let me know how many bars p/h you get it to make. I raised mine by 100 just by taking out the coal banking.
@patduffy
Cheers buddy.
@everybody else
Not sure why the new version isn't working for you guys as mine is working fine make sure your using the new script that gets automatically downloaded ie version 0.6. And have SRL5. installed correctly will be late tonight before I can test or update any bugs or suggestions.
miketree
01-08-2012, 03:40 PM
@patduffy
Cheers buddy.
@everybody else
Not sure why the new version isn't working for you guys as mine is working fine make sure your using the new script that gets automatically downloaded ie version 0.6. And have SRL5. installed correctly will be late tonight before I can test or update any bugs or suggestions.
when I read ie version 0.6 I thought you meant IE 6.0 o.O
when I read ie version 0.6 I thought you meant IE 6.0 o.O
Lol oops I can see that myself now.
But is my auto updating version working or not.... Its working perfect for me.
Enter here
01-09-2012, 05:38 AM
This script doesnt seem to work for me, firstly it doesnt open a client and when i open a client it can't detect it and says "Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now."
read the first post on how to setup mate you will find your problem there
miketree
01-09-2012, 03:54 PM
Here's a quick fix for people having problems with the SRL5 Script (Latest)
This is for Steel bars without coal bag only. If you need this for something else, insert the WithdrawEx Function where needed.
procedure Bnk;
begin
case BarType.ItemIndex of
0: Withdraw(0,0,28);//iron bar
1:
begin //steel bar
if (UseCoalBag.Text='yes') then
begin
Withdraw(0,0,17);
GetCoal;
end;
if (UseCoalBag.Text='no') then
begin
Withdraw(0,0,9);
WithdrawEx(1,0,0,['coal', 'oal']);
end;
end;
Sorry people are experiencing problems with my newest version I just expected everyone to keep up to date with the newest simba and srl.
Everything is working perfect for me but I do plan on making some changes this week.
90 smithing! Only about 7 more days.
Been running this beauty 24/7, wonder if I'll get banned before 99.
wont think so...... well i hope so
but anyway nice :P
:edit hope not i meant lol
Reminisce
01-10-2012, 03:04 AM
Still having problems with the newest version, I have everything updated fully (SRL, Simba, etc).
I even made sure i had the absolute latest version of your script by going to the download URL in the source that the autoupdater uses. Still just hovers over the coal bag and coal for me. Verson .5a is still pretty functioning though.
youdude
01-10-2012, 05:21 AM
Still having problems with the newest version, I have everything updated fully (SRL, Simba, etc).
I even made sure i had the absolute latest version of your script by going to the download URL in the source that the autoupdater uses. Still just hovers over the coal bag and coal for me. Verson .5a is still pretty functioning though.
I have the same problem. idk why
Itankbots
01-10-2012, 09:10 AM
Just hovers over coalbag for me even tho i have it selected to use coalbag.
i dont know how many times i need to explain im kinda getting frustrated with the same question now please update you simba and SRL to the latest version SRL5 if that doesnt work you have don something wrong try uninstalling then reinstalling im using this with a freshly installed and updated version of simba and i have no problems what so eva
miketree
01-10-2012, 12:05 PM
Still having problems with the newest version, I have everything updated fully (SRL, Simba, etc).
I even made sure i had the absolute latest version of your script by going to the download URL in the source that the autoupdater uses. Still just hovers over the coal bag and coal for me. Verson .5a is still pretty functioning though.
Why don't you just modify it (takes 15-60 seconds)...
Got a 6 hour proggy last night using withdrawex ^^ excellent cruizin.
Why don't you just modify it (takes 15-60 seconds)...
Got a 6 hour proggy last night using withdrawex ^^ excellent cruizin.
too lazy to learn i guess ty for trying to help them
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.