View Full Version : UltraSteel Heater +CoalBag avg 85k mage xp/ph
Itankbots
01-10-2012, 12:50 PM
Mine is update to date lol. I dont have any other problems with the other SRL5 scripts.
.5a works fine for me but the new one just sits over coal bag. Re-downloaded the script and still same problem.
Works with the fix without coal bag but without coal bag its pointless lol
bambino
01-10-2012, 01:44 PM
super heating mithril bars not working for me :S
anyone else facing this problem??
Mine is update to date lol. I dont have any other problems with the other SRL5 scripts.
.5a works fine for me but the new one just sits over coal bag. Re-downloaded the script and still same problem.
Works with the fix without coal bag but without coal bag its pointless lol
send me the version that gets downloaded when you run the new script
Itankbots
01-10-2012, 02:51 PM
K. Went dungeonering couple hours. came back and it said new version. so downloaded and opened new version. but when i run that it still says this...
Checking for script updates...
0.6a
0.6
Newer script version online!
Autoupdating to newer version.
New script downloaded to C:\Simba\Scripts\UltraSteelCoalBagHeater V0.6aBy CRU1Z1N.simba!! Please use this one!!
Successfully executed.
But im already running UltraSteelCoalBagHeater V0.6aBy CRU1Z1N that version. :s closed simba, reopened and tried again. still get it =/
program SuperHeater;
{$I SRL/SRL/misc/smart.simba}
{$I SRL/SRL.simba}
{$DEFINE SRL5}
const
BnkTab = 2;
Mspeed = 18;
ScriptVersion = '0.6';
UseAutoChecker = true;
var
frmDesign: TForm;
Button1: TButton;
Label1: TLabel;
UseCoalBag,WhatBank,BarType: TComboBox;
Pinn,Pass,UsrName,Profit,HowManyBars: TEdit;
ItemNum2,iProfit,Tri,iHowManyBars,sx,sy,BarsMade, SupaHeatDTM, Bars: Integer;
Debug:string;
procedure AutoUpdateMe;
var Neifile:integer;
OnlineVersion, NewScript, NeiFeilNennen:string;
begin
if UseAutoChecker then
begin
writeln('Checking for script updates...');
OnlineVersion := GetPage('http://cru1z1nsscripts.googlecode.com/git/LatestVersion.txt');
writeln(OnlineVersion);
writeln(ScriptVersion)
if (trim(OnlineVersion) > ScriptVersion) then
begin
writeLn('Newer script version online!');
writeLn('Autoupdating to newer version.');
NewScript := GetPage('http://cru1z1nsscripts.googlecode.com/git/UltraSteelCoalBagHeater.simba');
NeiFeilNennen := ScriptPath+ 'UltraSteelCoalBagHeater V'+OnlineVersion+'By CRU1Z1N.simba';
Neifile := Rewritefile(NeiFeilNennen, true);
try
WriteFileString(Neifile, NewScript);
except
begin
writeLn('Fatal error writing to '+NeiFeilNennen+'!!');
terminatescript;
end;
end;
CloseFile(Neifile);
writeLn('New script downloaded to '+NeiFeilNennen+'!! Please use this one!!');
TerminateScript;
end else
writeLn('You have the latest version of the script!');
end else
WriteLn('!!!!! Not checking for latest version, you may be outdated!');
end;
procedure SetupPlayers;
begin
NumberOfPlayers(1);
CurrentPlayer := 0;
Players[0].Name := UsrName.Text;
Players[0].Pass := Pass.Text;
Players[0].Pin := Pinn.Text;
Players[0].Active := True;
end;
Procedure ButtonClick(Sender: TObject);
Begin
frmDesign.ModalResult:= mrOk;
iHowManyBars:= StrToInt(HowManyBars.Text);
iProfit:= StrToInt(Profit.Text);
End;
procedure InitForm;
begin
frmDesign := CreateForm;
frmDesign.Left := 100;
frmDesign.Top := 100;
frmDesign.Width := 660;
frmDesign.Height := 200;
frmDesign.Caption := 'CRU!Z!NS Ultra SuperHeater +CoalBag!';
frmDesign.Color := 1380316;
frmDesign.Font.Color := ClBlack;
frmDesign.Font.Name := 'Comic Sans MS';
Button1 := TButton.Create(FrmDesign);
Button1.Parent := FrmDesign;
Button1.Left := 260;
Button1.Top := 60;
Button1.Height := 100;
Button1.Width := 100;
Button1.Caption := 'Run Script';
Button1.OnClick := @ButtonClick;
Label1 := TLabel.Create(FrmDesign);
Label1.Parent := FrmDesign;
Label1.Top := 60;
Label1.Left := 370;
Label1.Caption := 'UserName?';
Label1 := TLabel.Create(FrmDesign);
Label1.Parent := FrmDesign;
Label1.Top := 90;
Label1.Left := 370;
Label1.Caption := 'Password?';
Label1 := TLabel.Create(FrmDesign);
Label1.Parent := FrmDesign;
Label1.Top := 120;
Label1.Left := 370;
Label1.Caption := 'Bank Pin?';
Label1 := TLabel.Create(FrmDesign);
Label1.Parent := FrmDesign;
Label1.Top := 60;
Label1.Left := 10;
Label1.Caption := 'Profit per bar?';
Label1 := TLabel.Create(FrmDesign);
Label1.Parent := FrmDesign;
Label1.Top := 90;
Label1.Left := 10;
Label1.Caption := 'How Many Bars?';
Label1 := TLabel.Create(FrmDesign);
Label1.Parent := FrmDesign;
Label1.Top := 120;
Label1.Left := 10;
Label1.Caption := 'Use CoalBag?';
Label1 := TLabel.Create(FrmDesign);
Label1.Parent := FrmDesign;
Label1.Top := 150;
Label1.Left := 10;
Label1.Caption := 'Where to bank?';
UsrName := TEdit.Create(FrmDesign);
UsrName.Parent := FrmDesign;
UsrName.Top := 60;
UsrName.Left := 460;
UsrName.Width := 100;
UsrName.Height := 20;
Pass := TEdit.Create(FrmDesign);
Pass.Parent := FrmDesign;
Pass.Top := 90;
Pass.Left := 460;
Pass.Width := 100;
Pass.Height := 20;
Pinn := TEdit.Create(FrmDesign);
Pinn.Parent := FrmDesign;
Pinn.Top := 120;
Pinn.Left := 460;
Pinn.Width := 100;
Pinn.Height := 20;
Profit := TEdit.Create(FrmDesign);
Profit.Parent := FrmDesign;
Profit.Top := 60;
Profit.Left := 135;
Profit.Caption := '100';
Profit.Width := 60;
Profit.Height := 20;
HowManyBars := TEdit.Create(FrmDesign);
HowManyBars.Parent := FrmDesign;
HowManyBars.Top := 90;
HowManyBars.Left := 135;
HowManyBars.Caption := '1000';
HowManyBars.Width := 60;
HowManyBars.Height := 10;
BarType := TComboBox.Create(FrmDesign);
BarType.Parent := FrmDesign;
BarType.Top := 10;
BarType.Left := 10;
BarType.Width := 350;
BarType.Height := 20;
BarType.Caption := 'BarType';
BarType.Items.Add('iron');
BarType.Items.Add('steel');
BarType.Items.Add('mith');
BarType.Items.Add('addy');
BarType.Items.Add('rune-Comingsoon');
UseCoalBag := TComboBox.Create(FrmDesign);
UseCoalBag.Parent := FrmDesign;
UseCoalBag.Top := 120;
UseCoalBag.Left := 135;
UseCoalBag.Width := 100;
UseCoalBag.Height := 20;
UseCoalBag.Caption := 'no';
UseCoalBag.Items.Add('yes');
UseCoalBag.Items.Add('no');
WhatBank := TComboBox.Create(FrmDesign);
WhatBank.Parent := FrmDesign;
WhatBank.Top := 150;
WhatBank.Left := 135;
WhatBank.Width := 100;
WhatBank.Height := 20;
WhatBank.Caption := 'WhatBank';
WhatBank.Items.Add('vwb');
WhatBank.Items.Add('veb');
WhatBank.Items.Add('fwb');
WhatBank.Items.Add('feb');
WhatBank.Items.Add('db');
WhatBank.Items.Add('sw');
end;
procedure SafeInitForm;
var
v: TVariantArray;
begin
setarraylength(V, 0);
ThreadSafeCall('InitForm', v);
end;
procedure ShowFormModal;
begin
frmDesign.ShowModal;
end;
procedure SafeShowFormModal;
var
v: TVariantArray;
begin
setarraylength(V, 0);
ThreadSafeCall('ShowFormModal', v);
end;
procedure GetCoal;
begin
repeat
MouseBox(85, 95, 108, 113, Mouse_Right);
until(WaitOptionMulti(['ithdraw-All', 'w-A'], RandomRange(250,500)))
end;
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);
GetCoal;
end;
end;
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;
3:begin //addy bar
if (UseCoalBag.Text='yes') then
begin
Withdraw(0,0,7);
GetCoal;
end;
if (UseCoalBag.Text='no') then
begin
Withdraw(0,0,4);
GetCoal;
end;
end;
end;
end;
Procedure OpenSwBank;
var bnkT,x,y:integer;
begin
bnkT:=0;
MarkTime(bnkT);
repeat
wait(0);
until (TimeFromMark(bnkT) > 35000) or (FindObjCustom(x,y,['Bank','nk ch','k che','est'], [2963780,10790316,10000542,5921374],3))
if(TimeFromMark(bnkT) > 35000)then
begin
Writeln('failed Banking sorry.......');
exit;
end;
Mouse(x,y,1,1,true);
end;
procedure DoBanking;
var
Tic:integer;
sm:TInvenItem;
begin
Tic:=0;
Tri:=0;
MarkTime(Tic);
if not(LoggedIn) then
begin
Exit;
end;
if(WhatBank.Text = 'sw')then
begin
OpenSwBank;
end else
// if OpenBankNPC then
if (OpenBank(WhatBank.Text, False, False))then
//ChooseOption('e-q');
// if (not (OpenBank(WhatBank.Text, False, False)))then exit;
Tic:=0;
MarkTime(Tic);
repeat
until(BankScreen) or(TimeFromMark(Tic) > 35000) or (PinScreen)
if(TimeFromMark(Tic) > 35000)then
begin
if (Tri < 2) then
begin
DoBanking;
Inc(Tri);
end else
Writeln('failed Banking sorry.......');
exit;
end;
If Pinscreen then
begin
InPin(Pinn.Text);
end;
Deposit(3,26,true);
MouseSpeed:= (Mspeed + RandomRange(-1, 3));
if not CurrentBankTab = 2 then
begin
BankTab(BnkTab);
end;
if (UseCoalBag.Text='yes') then //for coal bag
begin
MouseBox(85, 95, 108, 113, Mouse_Right);
WaitOptionMulti(['ithdraw-All', 'w-A'], RandomRange(250,500));
Tic:=0;
MarkTime(Tic);
repeat
sm := GetInven(2);
MouseBox(sm.ItemBox.X1,sm.ItemBox.Y1,sm.ItemBox.X2 ,sm.ItemBox.Y2,Mouse_Right);
until(ChooseOption('ll')or (TimeFromMark(Tic) >= 25000))
{for i := 6 to 8 do
if FindChatBoxText('y co',8,0)then
begin
Deposit(3,27,true);
end; }
if(TimeFromMark(Tic) >= 25000)then
begin
Writeln('failed Fill sorry.......');
exit;
end;
end;
Bnk;
while CloseBank do
begin
MouseSpeed := (Mspeed + RandomRange(-1, +3));
end;
end;
procedure proggy;
begin
cleardebug;
writeln(PadR('[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------', 50) + ']');
writeln(PadR('[ Ran for '+TimeRunning+'', 50) + ']');
WriteLn(PadR('[Magic xp : ' + IntToStr(BarsMade*53), 50) + ']');
WriteLn(PadR('[Magic : ' + FloatToStr(Round((BarsMade*53 * 3600) / (GetTimeRunning / 1000))) + ' Mage XP/Hr', 50) + ']');
WriteLn(PadR('[Smith : ' + FloatToStr(Round((BarsMade*17 * 3600) / (GetTimeRunning / 1000))) + ' Smith XP/Hr', 50) + ']');
WriteLn(PadR('[Profit : ' + FloatToStr(Round((BarsMade*iProfit * 3600) / (GetTimeRunning / 1000))) + ' Gp/Hr', 50) + ']');
WriteLn(PadR('[Profit Made : ' +IntToStr(BarsMade*iProfit), 50) + ']');
writeln(PadR('[Bars made : '+IntToStr(BarsMade)+'', 50) + ']');
WriteLn(PadR('[Making : ' + FloatToStr(Round((BarsMade * 3600) / (GetTimeRunning / 1000))) + ' Bars/ph', 50) + ']');
writeln(PadR('[Debug '+Debug+'', 50) + ']');
end;
procedure DoSmelting(ItemNum,NumBars:integer);
var
sm: TInvenItem;
t,Tic:integer;
begin
ItemNum2:=ItemNum;
SupaHeatDTM := DTMFromString('mbQAAAHicY2VgYJjLxMAwE4inA/EiIF4MxOWMDAxlQFwHxDVAXAnEsoxMDHqMzAx2TMxgGoSxAUYs GAwAHzIGhQ==');
if not(LoggedIn) then Exit;
MouseSpeed:= (Mspeed+RandomRange(-2,+3));
GameTab(tab_magic);
t:=0;
MarkTime(Tic);
repeat
repeat
until (FindDTM(SupaHeatDTM,sx,sy,MIX1,MIY1,MIX2,MIY2) or(TimeFromMark(Tic) > 17000))
if(TimeFromMark(Tic) > 17000)then
begin
exit;
end;
Mouse(sx,sy,2,2,true);
wait(RandomRange(50,100));
repeat
wait(4);
inc(t);
until(GetCurrentTab = tab_inv )or (t > 8000)
if LevelUp then
begin
ClickToContinue;
end;
FindNormalRandoms;
sm := GetInven(ItemNum2);
MouseBox(sm.ItemBox.X1,sm.ItemBox.Y1,sm.ItemBox.X2 ,sm.ItemBox.Y2,Mouse_Left);
t:=0;
MarkTime(Tic);
repeat
if LevelUp then
begin
ClickToContinue;
end;
until((TimeFromMark(Tic) > 15000))or(GetCurrentTab = tab_magic)
if(TimeFromMark(Tic) > 15000)and not(GetCurrentTab = (tab_magic))then
begin
GameTab(tab_magic);
end;
inc(Bars);
inc(BarsMade);
proggy;
Until(Bars>=NumBars);
MouseSpeed:= (Mspeed+RandomRange(-1,3));
FindNormalRandoms;
FreeDTM(SupaHeatDTM);
end;
Procedure Main;
begin
MakeCompass('n');
repeat
MouseSpeed := (Mspeed + RandomRange(-1,3));
DoBanking;
Bars:=0;
Tri:=0;
FindNormalRandoms;
case BarType.ItemIndex of
0:DoSmelting(28,26);// iron
1:begin //steel
if (UseCoalBag.Text='yes') then
begin
DoSmelting(19,17);
end else
DoSmelting(10,9);
end;
2:begin //mith
if (UseCoalBag.Text='yes') then
begin
DoSmelting(12,10);
end else
DoSmelting(6,5);
end;
3:begin //addy
if (UseCoalBag.Text='yes') then
begin
DoSmelting(9,7);
end else
DoSmelting(5,4);
end;
end;
until (BarsMade>=iHowManyBars);
end;
begin
AutoUpdateMe;
SafeInitForm;
SafeShowFormModal;
ClearDebug;
Smart_Server := 10;
Smart_Members := False;
Smart_Signed := True;
Smart_SuperDetail := False;
SetupSRL;
SetupPlayers;
ActivateClient;
Debug:='none';
if not LoggedIn then LogInPlayer;
SetAngle(SRL_ANGLE_HIGH);
ClearDebug;
wait(1000);
Main;
Freeform(frmDesign);
end.
Thats the script that comes up when i load the latest (.6a), that wont let me even run it. just compiles and says get the newer version...but that is the newer one :s
Sorry mate not trying to be a pain with the problem, jsut trying to help out.
delete that version it downloaded and run the script again use the next version it downlaods
Itankbots
01-10-2012, 03:49 PM
Ahhhh i feel so stuipd for not trying that. Thanks. the new version works with coal bag :)
Over tired and didnt think of that lol. thank you.
kingob
01-10-2012, 06:54 PM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 4 Hours, 30 Minutes and 23 Seconds]
[Magic xp : 350701 ]
[Magic : 77823 Mage XP/Hr ]
[Smith : 24962 Smith XP/Hr ]
[Profit : 86633 Gp/Hr ]
[Profit Made : 390403 ]
[Bars made : 6617 ]
[Making : 1468 Bars/ph ]
[Debug none ]
Great script thank you very much :), using coal bag and shortened some of the waiting times to try and get a bit more mage xp worked a treat.
* I change line 422 to S instead of N and the banking procedure is much more stable as I found it never failed or clicked on Nomad.
Reminisce
01-10-2012, 11:48 PM
Thank you; newest version works. Plan on using this to 99 mage at least, and possibly 99 smithing.
lilcmp1
01-11-2012, 04:54 AM
Ahh, the latest update has been working for me, proggy in the morning ^.^ it's a shame coal and iron are never dropping at the same time. It's either one or the other is pricey lol
Itankbots
01-11-2012, 05:07 AM
[ Ran for 5 Hours, 27 Minutes and 19 Seconds]
[Magic xp : 371212 ]
[Magic : 68046 Mage XP/Hr ]
[Smith : 21826 Smith XP/Hr ]
[Profit : 64194 Gp/Hr ]
[Profit Made : 350200 ]
[Bars made : 7004 ]
[Making : 1283 Bars/ph ]
[Debug none ]
Works nicely
glad you guys are working again planning on rewriting this on the weekend... is very sloppy i tinks
doublex8
01-11-2012, 03:26 PM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 4 Hours, 53 Minutes and 16 Seconds]
[Magic xp : 424371 ]
[Magic : 86822 Mage XP/Hr ]
[Smith : 27848 Smith XP/Hr ]
[Profit : -80270 Gp/Hr ]
[Profit Made : 800700 ]
[Bars made : 8007 ]
[Making : 1638 Bars/ph ]
[Debug none ]
Ended because I ran out of ores. I also didn't calculate profit so ignore that.
EDIT: Would be cool if you added srl stats :D
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 4 Hours, 53 Minutes and 16 Seconds]
[Magic xp : 424371 ]
[Magic : 86822 Mage XP/Hr ]
[Smith : 27848 Smith XP/Hr ]
[Profit : -80270 Gp/Hr ]
[Profit Made : 800700 ]
[Bars made : 8007 ]
[Making : 1638 Bars/ph ]
[Debug none ]
Ended because I ran out of ores. I also didn't calculate profit so ignore that.
EDIT: Would be cool if you added srl stats :D
yeah iv'e got around 37k steel bars to smelt into balls
miketree
01-12-2012, 11:07 AM
[Magic xp : 471223 ]
[Magic : 82743 Mage XP/Hr ]
[Smith : 26540 Smith XP/Hr ]
[Profit : -53370 Gp/Hr ]
[Profit Made : 889100 ]
[Bars made : 8891 ]
[Making : 1561 Bars/ph ]
[Debug none ]
And after tweaking her a bit :P
[Magic xp : 29256 ]
[Magic : 96096 Mage XP/Hr ]
[Smith : 30823 Smith XP/Hr ]
[Profit : 181313 Gp/Hr ]
[Profit Made : 55200 ]
[Bars made : 552 ]
[Making : 1813 Bars/ph ]
[Debug none ]
92 smithing! :) For some reason my Bars per hour has dropped from 950 to 850, but she's still running strong.
doublex8
01-13-2012, 01:35 AM
Just something I noticed while watching the script run. In SW I noticed that if you are facing the chest is clicks the lower left corner of the chest. Sometimes that Nomad dude will be standing right next to you when this happens and it initiates a convo with him him. Just something I observed.
Yeah, I couldn't figure out how to fix that. I believe it's because the script uses the white rim around the chest as the color, and he shares that color. It should check for "bank" or whatever, but sometimes it clicks too fast and ends up talking to him.
This isn't a huge deal, but it takes quite a while to then open the bank successfully. I lowered some wait time, can't remember where and I can't be bothered to look right now. But it basically solved the problem and brought me back up to my 950 bars per hour.
Itankbots
01-13-2012, 01:30 PM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 5 Hours, 14 Minutes and 14 Seconds]
[Magic xp : 371212 ]
[Magic : 70879 Mage XP/Hr ]
[Smith : 22734 Smith XP/Hr ]
[Profit : 66867 Gp/Hr ]
[Profit Made : 350200 ]
[Bars made : 7004 ]
[Making : 1337 Bars/ph ] <-- lol at bars per hr
[Debug none ]
Successfully executed.
miketree
01-13-2012, 02:39 PM
Spiffed her up a bit ^^
[Magic xp : 173151 ]
[Magic : 105508 Mage XP/Hr ]
[Smith : 33842 Smith XP/Hr ]
[Profit : 199072 Gp/Hr ]
[Profit Made : 326700 ]
[Bars made : 3267 ]
[Making : 1990 Bars/ph ]
[Debug none ]
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 5 Hours, 14 Minutes and 14 Seconds]
[Magic xp : 371212 ]
[Magic : 70879 Mage XP/Hr ]
[Smith : 22734 Smith XP/Hr ]
[Profit : 66867 Gp/Hr ]
[Profit Made : 350200 ]
[Bars made : 7004 ]
[Making : 1337 Bars/ph ] <-- lol at bars per hr
[Debug none ]
Successfully executed.
1337 proggy for leet script ;) nice prog mate
@mike your bph is crazy don't release any of your edits please ;)
I've toned it down to help prices
kingob
01-13-2012, 08:49 PM
Just something I noticed while watching the script run. In SW I noticed that if you are facing the chest is clicks the lower left corner of the chest. Sometimes that Nomad dude will be standing right next to you when this happens and it initiates a convo with him him. Just something I observed.
Yeah, I couldn't figure out how to fix that. I believe it's because the script uses the white rim around the chest as the color, and he shares that color. It should check for "bank" or whatever, but sometimes it clicks too fast and ends up talking to him.
This isn't a huge deal, but it takes quite a while to then open the bank successfully. I lowered some wait time, can't remember where and I can't be bothered to look right now. But it basically solved the problem and brought me back up to my 950 bars per hour.
:duh::duh:
* I change line 422 to S instead of N and the banking procedure is much more stable as I found it never failed or clicked on Nomad.
miketree
01-13-2012, 11:12 PM
Yeah, I couldn't figure out how to fix that. I believe it's because the script uses the white rim around the chest as the color, and he shares that color. It should check for "bank" or whatever, but sometimes it clicks too fast and ends up talking to him.
This isn't a huge deal, but it takes quite a while to then open the bank successfully. I lowered some wait time, can't remember where and I can't be bothered to look right now. But it basically solved the problem and brought me back up to my 950 bars per hour.
Step 1 : Insert Writeln(x) + Writeln(y) statements after script finds chest
Step 2 : Monitor these values to find a valid range of X and Y coordinates
Step 3 : Replace FindBankChestColor procedure/function with a safe RandomRange Mouse function
Step 4 : Problem Solved.
Amsterdam
01-14-2012, 12:10 AM
Will never forget this script :-)
Ah, Muchas Gracias mike.
edit: Also, 95 smithing! Almost there.
Will never forget this script :-)
Cheers mate no1 tester
Jlv gz buddy let me know when you get 99
pierre
01-14-2012, 09:51 PM
Damn this is a record of mine :p
http://img4.imageshack.us/img4/51/recordib.png
Doctormajk
01-15-2012, 03:40 PM
Quicky note, is it possible to add a price for nature runes so you get the profit more exactly :)?
Quicky note, is it possible to add a price for nature runes so you get the profit more exactly :)?
Don't need to do that you enter you own profit
Add the prices up for example steel bars needs
(There are not the correct prices)
1x iron ore = 300gp
2x coal = 600gp
1x nature = 300gp
Total price per bar =1200gp
Then subtract the total from the price of a steel bar
I done it this way to be more accurate as each player will be purchasing them dif prices.
bigwezel
01-16-2012, 09:18 AM
nice script! i run out of ores that is why it stopped i got this proggy :p
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 6 Hours, 1 Minutes and 38 Seconds]
[Magic xp : 398560 ]
[Magic : 66126 Mage XP/Hr ]
[Smith : 21210 Smith XP/Hr ]
[Profit : -73175 Gp/Hr ]
[Profit Made : 752000 ]
[Bars made : 7520 ]
[Making : 1247 Bars/ph ]
Rob1593
01-16-2012, 09:32 PM
will not withdraw any thing
miketree
01-16-2012, 09:39 PM
will not withdraw any thing
There's a fix.
Harry
01-17-2012, 08:42 PM
You should add support for gold bars. They make no profit (in fact you lose a LOT of money), but they are quickest exp if you use goldsmith gauntlets. I'm adding it to my local copy right now but should be a nice addition for the public.
56.2 Smithing experience and 53 Magic experience per superheat using them.
You should add support for gold bars. They make no profit (in fact you lose a LOT of money), but they are quickest exp if you use goldsmith gauntlets. I'm adding it to my local copy right now but should be a nice addition for the public.
56.2 Smithing experience and 53 Magic experience per superheat using them.
Its already added to the next release bit held back past few days.
But for now you can just select iron and it will do it just as good.
Will also try to remember to add the exp and check for goldsmiths.
Harry
01-17-2012, 09:01 PM
OK. You also should add failsafe for SW bank. Sometimes it clicks on the guy and will fail banking. Something like "if clicktocontinue then rebank" might work good.
haha yeah i was planning on checking for the green chat color myself.
Stanmaer
01-17-2012, 11:21 PM
So I'm trying to use this to superheat steel bars without a coalbag at Vwb. It withdraws the right amount of ores, smelts the first bar but keeps trying to smelt the same blank spot from the previously smelted ores. It never moves on to smelting the next ore.
Harry
01-18-2012, 01:02 AM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 3 Hours, 31 Minutes and 16 Seconds]
[Magic xp : 317841 ]
[Magic : 90267 Mage XP/Hr ]
[Smith : 95717 Smith XP/Hr ]
[Profit : 0 Gp/Hr ]
[Profit Made : 0 ]
[Bars made : 5997 ]
[Making : 1703 Bars/ph ]
[Debug none ]
Not bad, just took some smoothing out to get it to run like that at SW without clicking NPC etc.
Should add SRL Stats, and modify your smelt procedure so it clicks right where the superheat button is on the inv until doing the last 5 slots (saves time and is more humanlike as well).
Wetish
01-18-2012, 11:19 AM
It has a hard time opening the bank.
Was worried about leaving simba bot while i was at school :P however left it and when i get back turn out it was my computer that turned its self of however did run for 6k steels sadly no proggy :( however just wondering am using hati gloves does it calculate the extra exp from xp gained or is it like it calculate bars x set exp? Also got me from 91-93 so far not sure to go to 94 or 99 ;)
kocke
01-19-2012, 04:38 PM
Easy way to find how much u make (http://runescape.wikia.com/wiki/Calculators/Superheat) :)
Eigirdas
01-21-2012, 07:19 AM
Damn this is a record of mine :p
http://img4.imageshack.us/img4/51/recordib.png
How u make 93k mage xp/ hr ? What bars u superheating? Are u using coal bag?
HolyWord
01-21-2012, 09:34 AM
Great script 10/10 :)
iNoblej
01-21-2012, 01:02 PM
I will paste a "proggy" soon.
hents1230
01-21-2012, 01:14 PM
How u make 93k mage xp/ hr ? What bars u superheating? Are u using coal bag?
most possibly iron bars
99 Smithing! :)
Congrats bro and enjoy
C3NTRIX5
01-21-2012, 05:46 PM
Having a tough time running this at Soul Wars. Will try a few more things to get it working.
hents1230
01-21-2012, 06:44 PM
this script is just perfect!!! Thanks alot. getting 99 magic this week
Blackpea
01-21-2012, 06:45 PM
Script works great thanks a lot :)
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 5 Hours, 41 Minutes and 26 Seconds]
[Magic xp : 320968 ]
[Magic : 56403 Mage XP/Hr ]
[Smith : 18091 Smith XP/Hr ]
[Profit : 65981 Gp/Hr ]
[Profit Made : 375472 ]
[Bars made : 6056 ]
[Making : 1064 Bars/ph ]
C3NTRIX5
01-22-2012, 12:50 AM
The problem I get when trying to run this is "
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 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.
"
Also, the script, it opens the SW bank, right clicks coal, and then right clicks the coal bag. It does not move down and select withdraw,or fill. Nor does it click on the Superheat Icon. Any suggestions?
Wow, best script I've ever seen for a color bot. I really really like this one :).
C3NTRIX
01-22-2012, 01:11 AM
It works on my side computers, but not my main computer. Odd
kingofda561
01-22-2012, 02:45 AM
best script ever!
translateservererror
01-22-2012, 10:57 AM
Great beside clicking nomad
heshbush
01-22-2012, 02:30 PM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 5 Hours, 40 Minutes and 17 Seconds]
[Magic xp : 355365 ]
[Magic : 62659 Mage XP/Hr ]
[Smith : 20098 Smith XP/Hr ]
[Profit : 52175 Gp/Hr ]
[Profit Made : 2682000 ]
[Bars made : 6705 ]
[Making : 1182 Bars/ph ]
[Debug none ]
=) Ran until client token kickout, this is very worthy of crashsmart mod ;)
Doctormajk
01-23-2012, 07:54 PM
Is it just my script working slow :o?
[ Ran for 2 Hours, 58 Minutes and 58 Seconds]
[Magic xp : 56657 ]
[Magic : 18994 Mage XP/Hr ]
[Smith : 6092 Smith XP/Hr ]
[Profit : 183496 Gp/Hr ]
[Profit Made : 547328 ]
[Bars made : 1069 ]
[Making : 358 Bars/ph ]
[Debug none ]
Wetish
01-23-2012, 09:15 PM
Great script! Got me 43-94 magic. But it never detects any randoms (Not the scripts fault)
Zee Best
01-23-2012, 10:44 PM
Thanks for this script.
Only ran it for a few levels, but i was getting around 75k xp/hr doing iron just for xp.
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 1 Hours, 37 Minutes and 30 Seconds]
[Magic xp : 122483 ]
[Magic : 75374 Mage XP/Hr ]
[Smith : 24176 Smith XP/Hr ]
[Profit : 0 Gp/Hr ]
[Profit Made : 0 ]
[Bars made : 2311 ]
[Making : 1422 Bars/ph ]
[Debug none ]
Going to sell my bank and run it overnight ;p
0blivian
01-24-2012, 12:55 AM
[Error] (61:23): Unknown identifier 'myname' at line 60
Compiling failed.
This script is amazing, tested it on my F2P pure got from 60 to 81 magic + 49 to 68 smith and still no ban / warning :).
heshbush
01-24-2012, 03:37 PM
You should add support for Daemonheim bank at the 'Fremminik Banker', the equivalant of a SoulWars bank but for F2Pers.
asdasd500
01-24-2012, 04:49 PM
Not working at all, just hovers over iron and coal and does nothing
kefku
01-25-2012, 05:58 PM
Thankyou for such a nice script:D
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 4 Hours, 1 Minutes and 6 Seconds]
[Magic xp : 255036 x2 hati paws ]
[Magic : 63468 Mage XP/Hr ]
[Smith : 20357 Smith XP/Hr ]
[Profit : 119751 Gp/Hr ]
[Profit Made : 481200 (1085k profit ]
[Bars made : 4812 ]
[Making : 1197 Bars/ph ]
[Debug none ]
You should add support for Daemonheim bank at the 'Fremminik Banker', the equivalant of a SoulWars bank but for F2Pers.
I agree.
Wilko
01-26-2012, 05:31 PM
Amazing, flawless, fast.
123 owned2
01-27-2012, 08:45 AM
very nice works great. definately using this to get mage up :)
sander70
01-27-2012, 05:11 PM
yesterday it was working fine for me but today it isnt becouse its clicks on the sw bank chest then it takes the ores but alot of times then it close the bank and than tries to withdraw the ores again without the bank opened and it does not heat then so it goes with the mouse to the possition of the ores in the bank first slot in the bank so it keeps hovering that on the screen and right clicks on that possition i already updated srl but that cant be the problem i think
sorry for my bad english im dutch:P
Kosova
01-27-2012, 07:41 PM
At which bank can i use this script?
Tickyy
01-27-2012, 09:55 PM
[Error] (61:23): Unknown identifier 'myname' at line 60
Compiling failed.
The script you are using doesn't belong here, at line 60 you actually find this:
Image.Top := 60;
At which bank can i use this script?
Dude don't be lazy, From line 9 to 15 shows you which bank you can use.
// '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
quazzymodem
01-27-2012, 09:57 PM
Working great as always! Maybe post the latest version in the thread though? With all that going on with Xnoob I could see alot of people not wanting to allow network access for the update.
noway123
01-28-2012, 10:40 AM
You should add support for Daemonheim bank at the 'Fremminik Banker', the equivalant of a SoulWars bank but for F2Pers.
I agree.
+1.
I think it is the only bank in f2p with no randoms.
besides that. Nice script :D
Kosova
01-28-2012, 04:29 PM
I dont know whats wrong but im trying to make steel bars at vwb and it only makes like 2 because when it goes to superheat, it makes it freeze.
I dont know whats wrong but im trying to make steel bars at vwb and it only makes like 2 because when it goes to superheat, it makes it freeze.
Hmm are you sure you use the newest version? because i'm using it right now. Works flawlessly.
Kosova
01-28-2012, 05:24 PM
Bro i am using the 0.6 version
EDIT:Can any1 help?
Ran for 1 Minutes and 50 Seconds ]
[Magic xp : 106 ]
[Magic : 3469 Mage XP/Hr ]
[Smith : 1112 Smith XP/Hr ]
[Profit : 6545 Gp/Hr ]
[Profit Made : 200 ]
[Bars made : 2 ]
[Making : 65 Bars/ph ]
[Debug none
quazzymodem
01-29-2012, 02:09 AM
I was wondering if you might be adding rune bars soon? They have been 'coming soon' for quite some time, and I really wanted to make some of those. If you need any help with it let me know.
Greomareh
01-29-2012, 03:34 AM
Awesome script. Totally worth the 4k dungeoneering tokens for coal bag. You sir, deserve a medal ^^
I sure wish some bots would lower the prices of iron and coal though... Maybe we should all work together to achieve this O.O
btkrazyrunner
01-29-2012, 06:40 AM
Great script, works very well, but the only thing is that it doesn't do randoms/detects them. Maybe it's just for me, but if you could look into that it will make the script flawless. Thanks for a great script!
Kosova
01-29-2012, 09:39 AM
Great script, works very well, but the only thing is that it doesn't do randoms/detects them. Maybe it's just for me, but if you could look into that it will make the script flawless. Thanks for a great script!
The script doesn't solve randoms, the client does.;)
trials6112
01-29-2012, 09:40 AM
i used this in the past to get 2 accs to 99 mage : so great script man
plekter
01-29-2012, 09:45 AM
Works very well. I also tried mithril bars to see if the smithing exp is better. It was not, steel bars are better mage xp(captain obvious to the rescue? and also better smithing xp.
As a small addition, would be good if it tracked the total smithing exp gained too.
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 4 Hours, 21 Minutes and 41 Seconds]
[Magic xp : 265212 ]
[Magic : 60809 Mage XP/Hr ]
[Smith : 19504 Smith XP/Hr ]
[Profit : 114734 Gp/Hr ]
[Profit Made : 500400 ] PROFIT WAS ACTUALLY 133gp per bar not 100 so 665,5k
[Bars made : 5004 ]
[Making : 1147 Bars/ph ]
[Debug none ]
Kosova
01-29-2012, 09:58 AM
I still can't get it to work, wtf...
Skywalk
01-29-2012, 09:30 PM
it works fine tyvm!!!!!
here is my proggy
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 10 Minutes and 8 Seconds ]
[Magic xp : 9964 ]
[Magic : 58997 Mage XP/Hr ]
[Smith : 18923 Smith XP/Hr ]
[Profit : 111315 Gp/Hr ]
[Profit Made : 18800 ]
[Bars made : 188 ]
[Making : 1113 Bars/ph ]
[Debug none ]
Ijust filled in 100 gp per bar
Skywalk
01-29-2012, 09:35 PM
maybe change the mouse pattern so it doesnt look as a bot
Ive already made a new version just holding onto for now.
Ive already made a new version just holding onto for now.
Sounds great! cant wait untill it gets released :D.
biohazard222
01-29-2012, 10:06 PM
Just achieved 99 magic, thx bro :)
this script took me all the way from 54 mage... making about 18M gp in profit
http://i41.tinypic.com/2nqe2b4.jpg
Just achieved 99 magic, thx bro :)
this script took me all the way from 54 mage... making about 18M gp in profit
http://i41.tinypic.com/2nqe2b4.jpg
Gratz!
Just achieved 99 magic, thx bro :)
yw bud...:D
@Bwuk nope the new version supports the same banks i might if i have time working something else atm
yw bud...:D
@Bwuk nope the new version supports the same banks i might if i have time working something else atm
No problem :), its just annoying while botting over night getting stuck in a random as an F2P :(.
pigggy
01-30-2012, 06:12 PM
if ur getting annoyed by random events, u could just bot in soul wars
Kosova
01-30-2012, 06:21 PM
Please release the new version as mine doesn't work for some reason :D
Tickyy
01-30-2012, 06:41 PM
Please release the new version as mine doesn't work for some reason :D
That's not going to fix it anyway... :p.
if ur getting annoyed by random events, u could just bot in soul wars
My pure is F2P.
Skywalk
01-30-2012, 06:48 PM
then buy P2P XD
then buy P2P XD
Well I wont buy member just for botting at SW, I will get like 99 magic in F2P and get some more better stats, then i'll become a member :).
hents1230
01-30-2012, 07:57 PM
This script got me 98 magic from 68 and made me over 20m. However, prices are now dropping hard and I'll make my 99 with alching. Thanks alot!
i p0t u drop
01-31-2012, 10:52 AM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 3 Hours, 13 Minutes and 18 Seconds]
[Magic xp : 265000 ]
[Magic : 82255 Mage XP/Hr ]
[Smith : 26383 Smith XP/Hr ]
[Profit : 155199 Gp/Hr ]
[Profit Made : 500000 ]
[Bars made : 5000 ]
[Making : 1551 Bars/ph ]
[Debug none ]
Successfully executed.
The following DTMs were not freed: [2, 3]
Wonderful Script
Slatopaz
01-31-2012, 03:52 PM
Just a heads up to the scripter, RuneScape updated it so that the bank booth is a left click "Bank"
quazzymodem
01-31-2012, 10:43 PM
Any progress on rune bars? I am ready to test the feature our rigorously :P
Any progress on rune bars? I am ready to test the feature our rigorously :P
I'm still waiting untill the banking function is fixed, did you fix it youself or?
Edit: never fixed already thanks alot SRL :D.
lilcmp1
02-01-2012, 12:38 AM
Just want to say thank you for 99 mage and 87 smithing!!! You rock.
Also to anyone with banking problems change 'use-quickly' to 'bank' and 'ank' etc. Worked for me.
TsterT
02-01-2012, 02:30 AM
Not working at all, just hovers over iron and coal and does nothing
Is should work, unless the colors for the bank chest is different than the sw bank.
tdawg777
02-01-2012, 08:10 AM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 2 Hours, 49 Minutes and 41 Seconds]
[Magic xp : 159000 ]
[Magic : 56222 Mage XP/Hr ]
[Smith : 18033 Smith XP/Hr ]
[Profit : 106079 Gp/Hr ]
[Profit Made : 300000 ]
[Bars made : 3000 ]
[Making : 1060 Bars/ph ]
No idea how people are getting 80k/hr.
Also didn't log out after the bars were finished and sat at the bank till the 6 hour auto logout...
I'm making a few decisions today on what todo like I said I will update this thread today
I'm making a few decisions today on what todo like I said I will update this thread today
Sounds great, would appreciate if you could add dunge island banking support.
wutora
02-01-2012, 05:11 PM
Hey there, I've got a few problems with this script.
But first, it's a nice script and saved me tons of mouseclicks and time, many thanks for that.
But as I said I'm having problems with it:
Everything works fine, but everytime an Ore gets superheated my client just freezes for some seconds, wasting a lot of time (uses 100% cpu at this time to, making it impossible to do something different at while it heats the bars). Does anyone encounter this too or knows what can cause this problem? It doesn't freeze when I'm clicking manually. When I pause the script while the client is freezed, the client starts working again.
I've updated everything and other scripts work fine.
Once again thanks for this great script.
Edit: Just noticed that another process is eating a good chunk of CPU too, will try it again whithout this in a few mins. Sorry :/
Edit²: Works fine now, sorry for the wrong comment.
COODA I
02-01-2012, 10:47 PM
Alright I changed it to simba and fixed your anti leach thing with the angle. Then when I launched it even though I selected no for the coal bag it continued to only pull out 9 iron and then just autoheat the iron only resulting in producing only iron bars. I have my iron and coal in the same spot as you do just do not have a coal bag and really would rather not get one. Any way to fix this or am i doing something wrong?
xeonzor
02-02-2012, 12:01 AM
Amazing script man, Can't thank you enough for this!
Going to run this tonight and post a progression report next morning.
EDIT:
As promised!
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 3 Hours, 41 Minutes and 18 Seconds]
[Magic xp : 245231 ]
[Magic : 66488 Mage XP/Hr ]
[Smith : 21326 Smith XP/Hr ]
[Profit : -9840 Gp/Hr ]
[Profit Made : 1156750 ]
[Bars made : 4627 ]
[Making : 1254 Bars/ph ]
[Debug none ]
Something must have gone wrong with the "profit". probally a setting by me!
This was without a coal bag.
doublex8
02-02-2012, 03:03 AM
Don't pay attention to the profit, I don't input it in. Too lazy :p
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 3 Hours, 37 Minutes and 38 Seconds]
[Magic xp : 190800 ]
[Magic : 52602 Mage XP/Hr ]
[Smith : 16872 Smith XP/Hr ]
[Profit : 99249 Gp/Hr ]
[Profit Made : 360000 ]
[Bars made : 3600 ]
[Making : 992 Bars/ph ]
HolyWord
02-02-2012, 07:08 AM
Will there be an update? Sense there is no "Quickly-use" option on the bank anymore it just kinda sits there.
:)
xeonzor
02-02-2012, 07:45 AM
Will there be an update? Sense there is no "Quickly-use" option on the bank anymore it just kinda sits there.
:)
Use it at a chest instead of a bank for now. Also, I think a fix to that has been posted on this thread already.
HolyWord
02-02-2012, 08:03 AM
Use it at a chest instead of a bank for now. Also, I think a fix to that has been posted on this thread already.
Is the script compatible with any chest? Or do only a few work?
xeonzor
02-02-2012, 08:23 AM
Is the script compatible with any chest? Or do only a few work?
I couldn't tell you that, but I can tell you that it works just fine at the soulwars chest.
princenath
02-02-2012, 12:54 PM
i dont know whats wrong but it first withdraws full inv of iron ore then superheats first ore into bar then deposits all ore except that bar bar and withdraws 9 iron and all coal then super heats one steel bar and sometimes outside the bank!i m using varrock west bank plz help
princenath
02-02-2012, 12:58 PM
plz help
kocke
02-02-2012, 01:09 PM
plz help
Got the latest version?
Was up night trying to decide what todo with script public or back to private pretty unsure atm my new version is epic fastest thing ever will let you guys know sorry about any errors you guys are having try reading back thru this thread and make some mnor changes will let you all know
Was up night trying to decide what todo with script public or back to private pretty unsure atm my new version is epic fastest thing ever will let you guys know sorry about any errors you guys are having try reading back thru this thread and make some mnor changes will let you all know
Well I havn't gotten ANY problems with this script ever. I honestly think they ain't using the newest version.
ivanch11
02-02-2012, 07:14 PM
Please keep this script so everyone can use it, its very nice. I use it a sw bank (no randoms, and it is a chest.) works pretty fine, sometimes it clicks nomad and i have to manually put it to work again, but i really like this script
Please keep this script so everyone can use it, its very nice. I use it a sw bank (no randoms, and it is a chest.) works pretty fine, sometimes it clicks nomad and i have to manually put it to work again, but i really like this script
How often does it happen that it clicks Nomad?
10coins
02-03-2012, 12:26 AM
please change camera of sw cuz misclicking on npc who is walking in there make the north look down. no more misclicks. and i dont know why but my bot having lag/spikes.
Tickyy
02-03-2012, 09:56 AM
please change camera of sw cuz misclicking on npc who is walking in there make the north look down. no more misclicks. and i dont know why but my bot having lag/spikes.
He's about to remove this script from public and you still whine about the camera of sw, miss clicks and more... wow...
10coins
02-03-2012, 10:54 AM
ouu sry :O didnt see that
by the way its nice script
[Magic xp : 64872
[Magic : 61652 Mage XP/Hr
[Smith : 19775 Smith XP/Hr
[Profit : 0 Gp/Hr
[Profit Made : 0
[Bars made : 1224
[Making : 1163 Bars/ph
Big thanks for the creator :*
He's about to remove this script from public and you still whine about the camera of sw, miss clicks and more... wow...
How do you know his about to remove this script from public? just curious.
kingob
02-03-2012, 01:41 PM
How do you know his about to remove this script from public? just curious.
Was up night trying to decide what todo with script public or back to private pretty unsure atm my new version is epic fastest thing ever will let you guys know sorry about any errors you guys are having try reading back thru this thread and make some mnor changes will let you all know
Lol annoying leechers are annoying, and cant scroll up.
Lol annoying leechers are annoying, and cant scroll up.
Sorry didn't see that holy fk peaple now a days can get really mad out of noting.
Tickyy
02-03-2012, 06:44 PM
How do you know his about to remove this script from public? just curious.
read this:
Was up night trying to decide what todo with script public or back to private pretty unsure atm my new version is epic fastest thing ever will let you guys know sorry about any errors you guys are having try reading back thru this thread and make some mnor changes will let you all know
Edit: ninja'd !
Kosova
02-04-2012, 04:44 PM
Cruizin can you please just solve the problem?
PatDuffy
02-04-2012, 04:45 PM
Cruizin can you please just solve the problem?
Can you please read his posts? He said he's not sure if he's going to continue to update this.
Also, it's not a hard fix to make, I did it in 5 minutes.
E: Just to prove it is still stable with some small fixes :p
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 1 Hours, 3 Minutes and 12 Seconds]
[Magic xp : 78917 ]
[Magic : 74921 Mage XP/Hr ]
[Smith : 24031 Smith XP/Hr ]
[Profit : 87643 Gp/Hr ]
[Profit Made : 92318 ]
[Bars made : 1489 ]
[Making : 1413 Bars/ph ]
[Debug none ]
Slatopaz
02-04-2012, 07:27 PM
Can you please read his posts? He said he's not sure if he's going to continue to update this.
Also, it's not a hard fix to make, I did it in 5 minutes.
E: Just to prove it is still stable with some small fixes :p
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 1 Hours, 3 Minutes and 12 Seconds]
[Magic xp : 78917 ]
[Magic : 74921 Mage XP/Hr ]
[Smith : 24031 Smith XP/Hr ]
[Profit : 87643 Gp/Hr ]
[Profit Made : 92318 ]
[Bars made : 1489 ]
[Making : 1413 Bars/ph ]
[Debug none ]
Well I fixed the script in 30 seconds :norris:
All you guys need is the most basic scripting knowledge!
Gonna post proggy soon, thankyou cruzins!
Well I fixed the script in 30 seconds :norris:
All you guys need is the most basic scripting knowledge!
Gonna post proggy soon, thankyou cruzins!
What are you guys talking about which problems? I havn't had any problems yet :D.
PatDuffy
02-04-2012, 09:46 PM
Curses just had a 3 hour proggy but lost it due to the dam bitmap(22) bug....
Curses just had a 3 hour proggy but lost it due to the dam bitmap(22) bug....
Well never had that error before, but my max proggy have been like 4 hours or something like that, didn't copy it tho :(.
kyocera
02-04-2012, 10:48 PM
Best script on Villavu, I'm going to attempt to change it into an enchanter as well just gonna change the spell DTM... I think that's all I gotta do.
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 17 Minutes and 4 Seconds ]
[Magic xp : 10229 ]
[Magic : 35961 Mage XP/Hr ]
[Smith : 11534 Smith XP/Hr ]
[Profit : 67851 Gp/Hr ]
[Profit Made : 19300 ]
[Bars made : 193 ]
[Making : 678 Bars/ph ]
[Debug none ]
PatDuffy
02-05-2012, 12:46 AM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 3 Hours, 2 Minutes and 15 Seconds]
[Magic xp : 225250 ]
[Magic : 74156 Mage XP/Hr ]
[Smith : 23786 Smith XP/Hr ]
[Profit : 86748 Gp/Hr ]
[Profit Made : 263500 ]
[Bars made : 4250 ]
[Making : 1399 Bars/ph ]
[Debug none ]
Got another one
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 3 Hours, 50 Minutes and 27 Seconds]
[Magic xp: 239454 ]
[Smith xp: 76806 ]
[Magic: 62344 Mage XP/Hr ]
[Smith: 19997 Smith XP/Hr ]
[Profit: 117630 Gp/Hr ]
[Profit Made: 451800 ]
[Bars made: 4518 ]
[Making: 1176 Bars/ph ]
[Debug: none ]
This script is amazing! :).
PatDuffy
02-05-2012, 12:51 AM
That was also my slightly updated version :p
That was also my slightly updated version :p
Yeah I see the diffrent between your proggy and mine :).
CreaShun
02-05-2012, 01:08 AM
This is a great script, unfortunately i only found it a week ago and i read that your planning on not working on it anymore, Sucks. If you don't mind i'll try my best to fix small problems with the script and post them on this topic so others can continue to use the script. I don't know much about programming, Just a noob but i'll try my best to fix small problems and share it with others. Thank you very much for the time and effort you put into making this great script. For all of those that are telling people to learn coding themselves to fix it, I agree with you 110% i don't like lazy leechers but not everyone has been dealt the same hand as you in life, Just remember that:)
Thanks again cruzzin, Really appreciate your work.
0blivian
02-05-2012, 02:47 AM
please dont give up on this script man
maxiboy164
02-05-2012, 06:43 AM
its loading now.... but i dont know what bank to do im at duel arena?
Kosova
02-05-2012, 10:03 AM
PatDuffy could you post the updates you did to the script?
Liquidd420
02-05-2012, 01:29 PM
The script is working fine without any tweaking made to it for me. I'm using it at Varrock east bank.
Just reached level 96 magic with this script, it truely is amazing! :D.
chiefcharlie
02-06-2012, 01:35 AM
wasint expecting a gui was looking all over for a player form haha! thank you for this script will give progress reports as i go along
doublex8
02-06-2012, 03:43 AM
Just had a five hour proggy but forgot to save :( great script though, getting me some nice mage xp with no money loss :D
Yes sadly today has come dunno how long this will last but I'm removing my script from the public no fault of anyone wasn't the annoying posts or the none posters just thought its time for someone else to take over this.
I've lost a lot of interest in developing this script.
This is not the end of me scripting am currently making a job lot of various scripts/bots which I will be releasing these have helped me greatly on my scripting journey and I hope you guys all enjoy I will be releasing these starting on wednesday 8th feb one day before my 25 birthday. On the 9th woohoo and that is the day I will be closing this thread also sorry for any disappointments
Yes sadly today has come dunno how long this will last but I'm removing my script from the public no fault of anyone wasn't the annoying posts or the none posters just thought its time for someone else to take over this.
I've lost a lot of interest in developing this script.
This is not the end of me scripting am currently making a job lot of various scripts/bots which I will be releasing these have helped me greatly on my scripting journey and I hope you guys all enjoy I will be releasing these starting on wednesday 8th feb one day before my 25 birthday. On the 9th woohoo and that is the day I will be closing this thread also sorry for any disappointments
Sad to hear but its up to you :).
Kunny
02-06-2012, 12:24 PM
Got my 99 of this in f2p completely and made 30mil+ in the process, cheers dude! I got screens but not sure where to put em up at :P
Got my 99 of this in f2p completely and made 30mil+ in the process, cheers dude! I got screens but not sure where to put em up at :P
I'm about to hit 97 with this F2P aswell, this script is truely amazing :).
Kosova
02-06-2012, 04:38 PM
Can somebody post the fix here or pm me ?
chiefcharlie
02-06-2012, 05:27 PM
heres a proggy so far
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 2 Hours, 33 Minutes and 54 Seconds]
[Magic xp : 169812 ]
[Magic : 66203 Mage XP/Hr ]
[Smith : 21235 Smith XP/Hr ]
[Profit : 78694 Gp/Hr ]
[Profit Made : 201852 ]
[Bars made : 3204 ]
[Making : 1249 Bars/ph ]
[Debug none
BarackOBieber
02-06-2012, 10:43 PM
Is a coalbag needed to run this script?
jelle013
02-06-2012, 10:49 PM
Is a coalbag needed to run this script?
not needed there is an option just select: No.
BarackOBieber
02-06-2012, 11:06 PM
Oh thanks! :D
doublex8
02-06-2012, 11:38 PM
Yes sadly today has come dunno how long this will last but I'm removing my script from the public no fault of anyone wasn't the annoying posts or the none posters just thought its time for someone else to take over this.
I've lost a lot of interest in developing this script.
This is not the end of me scripting am currently making a job lot of various scripts/bots which I will be releasing these have helped me greatly on my scripting journey and I hope you guys all enjoy I will be releasing these starting on wednesday 8th feb one day before my 25 birthday. On the 9th woohoo and that is the day I will be closing this thread also sorry for any disappointments
Just curious but what other bots are you writing scripts for? PM me if you need to.
Brotein
02-07-2012, 06:00 AM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 3 Hours, 27 Seconds ]
[Magic xp : 159000 ]
[Magic : 52867 Mage XP/Hr ]
[Smith : 16957 Smith XP/Hr ]
[Profit : 76807 Gp/Hr ]
[Profit Made : 231000 ]
[Bars made : 3000 ]
[Making : 997 Bars/ph ]
Did mith bars. Thanks man.
noway123
02-07-2012, 04:27 PM
Iam free2play and it did not solve any random for me.
So i decided to add the fremmnik Banker to the script.
It is probably not perfect but it worked fine for me :p.
Choose "dh" as bank when you set up the script and stand next to the banker.
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 2 Hours, 24 Minutes and 49 Seconds]
[Magic xp : 182797 ]
[Magic : 75735 Mage XP/Hr ]
[Smith : 24292 Smith XP/Hr ]
[Profit : 142897 Gp/Hr ]
[Profit Made : 344900 ]
[Bars made : 3449 ]
[Making : 1428 Bars/ph ]
[Debug none ]
Noway123
@Noway123 I tried out your version of this script but it wont work for me. Could you give me some expertise in how to use the "dh" banking spot?
noway123
02-07-2012, 05:35 PM
@Noway123 I tried out your version of this script but it wont work for me. Could you give me some expertise in how to use the "dh" banking spot?
Iam using it right now and that is where iam standing.
Make sure you choose "dh" as bank.
Since the update an hour ago i sometimes get the "you passed the wrong x and y coordinates" message. But the script never stoped since the update.
http://s14.directupload.net/images/120207/npjn73bj.png (http://www.directupload.net)
Noway123
Iam using it right now and that is where iam standing.
Make sure you choose "dh" as bank.
Since the update an hour ago i sometimes get the "you passed the wrong x and y coordinates" message. But the script never stoped since the update.
http://s14.directupload.net/images/120207/npjn73bj.png (http://www.directupload.net)
Noway123
I fixed it :), thanks for the share btw :D.
cheekyshaft
02-08-2012, 01:56 AM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 1 Hours, 8 Minutes and 36 Seconds]
[Magic xp : 61745 ]
[Magic : 54004 Mage XP/Hr ]
[Smith : 17322 Smith XP/Hr ]
[Profit : 101895 Gp/Hr ]
[Profit Made : 116500 ]
[Bars made : 1165 ]
[Making : 1018 Bars/ph ]
[Debug none ]
Very nice script :) There were a few errors early on, but that seemed to be due to lag more than anything. Used VWB, it lasted roughly an hour before the below error kept occuring
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.
Also, first post! :)
0blivian
02-08-2012, 02:36 AM
fks up every fucking time at sw with fken nomad an shit how do i fix..
Themamba
02-08-2012, 02:38 AM
fks up every fucking time at sw with fken nomad an shit how do i fix..
Calm down and give a little more information about the bug... any errors coming up? Ect. If all else fails just bot at a different bank. BTW thanks for the script OP, It's working really good :D
PatDuffy
02-08-2012, 02:39 AM
fks up every fucking time at sw with fken nomad an shit how do i fix..
pardon your language.
What exactly is it messing up with? Withdrawing, banking, superheating....?
I could help you if you could give a little bit more information.
doublex8
02-08-2012, 03:05 AM
pardon your language.
What exactly is it messing up with? Withdrawing, banking, superheating....?
I could help you if you could give a little bit more information.
Sometimes Nomad(The NPC strolling around soul wars) stands on top of you and instead of clicking the chest it clicks on Nomad. I think that is what he is saying.
kuiper
02-08-2012, 03:37 AM
http://i1234.photobucket.com/albums/ff403/Akuip/fail.jpg
Sorry for it being so big. idkhowtocrop.
HolyWord
02-08-2012, 05:14 AM
http://i1234.photobucket.com/albums/ff403/Akuip/fail.jpg
Sorry for it being so big. idkhowtocrop.
Try restarting your comp... Works for me if this happens.
HolyWord
02-08-2012, 05:15 AM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 6 Hours, 2 Minutes and 5 Seconds]
[Magic xp : 395592 ]
[Magic : 65552 Mage XP/Hr ]
[Smith : 21026 Smith XP/Hr ]
[Profit : -74012 Gp/Hr ]
[Profit Made : 746400 ]
[Bars made : 7464 ]
[Making : 1236 Bars/ph ]
[Debug none ]
Thank you so much. Closing in on 97 gonna be 99 soon
You're my hero <3
punkerpunk13
02-08-2012, 02:53 PM
fks up every fucking time at sw with fken nomad an shit how do i fix..
position it this way:
http://screensnapr.com/e/grAwcA.png
Kirilas
02-08-2012, 08:30 PM
Closed? Why?
Closed? Why?
Because his a baws.
Kosova
02-08-2012, 08:48 PM
Hey there, I've got a few problems with this script.
But first, it's a nice script and saved me tons of mouseclicks and time, many thanks for that.
But as I said I'm having problems with it:
Everything works fine, but everytime an Ore gets superheated my client just freezes for some seconds, wasting a lot of time (uses 100% cpu at this time to, making it impossible to do something different at while it heats the bars). Does anyone encounter this too or knows what can cause this problem? It doesn't freeze when I'm clicking manually. When I pause the script while the client is freezed, the client starts working again.
I've updated everything and other scripts work fine.
Once again thanks for this great script.
Edit: Just noticed that another process is eating a good chunk of CPU
Edit²: Works fine now, sorry for the wrong comment.
I get this too and I Don't know what to do..Any1 got any ideas?
Kunny
02-09-2012, 01:45 AM
[--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
[ Ran for 3 Hours, 27 Seconds ]
[Magic xp : 159000 ]
[Magic : 52867 Mage XP/Hr ]
[Smith : 16957 Smith XP/Hr ]
[Profit : 76807 Gp/Hr ]
[Profit Made : 231000 ]
[Bars made : 3000 ]
[Making : 997 Bars/ph ]
Did mith bars. Thanks man.
Don't bother with mith bars, they are more expensive to make in terms of the coal and mith ore you need, compared to steel with iron and coal. I say this because you end up making more steel bars than mith bars if you run them both at the same time. Hence more exp and more money also.
Try it, make steel bars for 3 and a half hours, I'd say you can make 3700 bars in that time so buy enough coal, iron and nats for that. Let me knw what you think!
omz2199
02-09-2012, 02:44 AM
can someone please send me the script i already have it but its on my home computer and im at work now
HolyWord
02-09-2012, 03:21 AM
Exception in Script: Unable to find file 'SRL/SRL/misc/smart.simba' used from ''
I'm getting this? But it's not just for this script its for any script right after i updated simba to 984 I haven't been able to open anything?
Can anyone tell me what's goin on?
COODA I
02-09-2012, 03:26 AM
position it this way:
http://screensnapr.com/e/grAwcA.png
How are you able to turn your screen mine is stuck in the starting position even when i disable smart and pause or stop simba. Would be great if someone could tell me! thanks
tanky2323
02-09-2012, 04:33 AM
could someone please send me this script? i could really use this for mage on my pure
YoHoJo
02-09-2012, 12:37 PM
Closed on request.
Will open when he updates it.
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.