I click the latest version and just pressed the green arrow at the top of the simba window, this is what I get.
I click the latest version and just pressed the green arrow at the top of the simba window, this is what I get.
Would be great if you had Massive pouch support! Maybe i can help with that. i have the level and the pouch!
[Error] (200:15): Unknown identifier 'SPS_MultiMouse' at line 199
Compiling failed.
help?
![]()
Last edited by superbuster4; 06-14-2012 at 11:16 AM.
i went to sps and then press over ride, then update. still doesnt work, im using the same sps as for Flights ZMI script
SPS Updater: Local Version - "87" | Remote Version = "87"
SPS Updater: Update File - "http://wizzup.org/static/srl/sps.tar.bz2"
SPS Updater: Downloading...
SPS Updater: Decompressing...
SPS Updater: Extracting...
SPS Update Successful!
after updating manually i got this error
[Error] SPS/SPS.simba(300:3): Unknown identifier 'SPS_FilterMinimap' at line 299
Compiling failed. i assume it should be SPS_Filter_Minimap
then after that i get this
[Error] (43:35): Unknown identifier 'MMCX' at line 42
Compiling failed.
reinstalled simba and all of the components and i get this error.
[Error] SPS/SPS.simba(300:3): Unknown identifier 'SPS_FilterMinimap' at line 299
Compiling failed.
so still stuck.
Last edited by superbuster4; 06-14-2012 at 01:27 PM.
ok il try that
[Error] (200:15): Unknown identifier 'SPS_MultiMouse' at line 199
Compiling failed.
No SPS update available.
No Plugins update available.
No MSI update available.
No SRL update available.
No Extensions update available.
any idea?
I'm going to test it out tomorrow. I'll tell you if i encounter any problems with it
Pathing around entrana is GARBAGE
Could'a had a V8
In love with the extensive coding that went into the making of this script. Does the same thing as Mat's Law runner, but with on screen proggy and better failsafes. Thanks man, I was gonna suggest you add anti-leech but after seeing how much work went into it, I don't think I would be bothered to try to solve any anti-leech accompanying it.
Btw I made a repairRunePouch spell procedure for Mat's Law runner. I haven't really tested it, but the basics of it is that it clicks the spell, then inventory tab pops up and you just have to click on the infected pouch and voila! Fixed
Simba Code:Procedure RepairRunePouch;
Var
RepairPouchSpell, Giantdeg, largedeg,Cosmic, Laws, Astral, pX, pY:Integer;
begin
Report('Repair Pouch');
Cosmic := BitmapFromString(9, 8, 'meJxTuH5TARUVF1cAUWlpFbJgTk5h' +
'Xl5xfkFpYVE5UBYunpGRm5WVjyybkJACkUpLy0aTjYtLAoonJaWlp' +
'GQgywIFY2ISgLJAvciyEHOiouLQZOG2R0TEoMnCtQMAH95kyw==');
RepairPouchSpell := DTMFromString('mggAAAHicY2NgYAhnYmCIAuIQIA4A4nggjgCJ' +
'MTIwBAFxIBDHAnE8ECcC8em9qxgcDRWAOhnhu' +
'CLOnUEOyMKGGXFgCAAA6+oI3Q==');
Astral := BitmapFromString(4, 6, 'meJw7tf7UKQyUkZELYaSkZAARh' +
'J2QkJKUlAZkxMQkxMUlAblAdlRUHIQLAKx3KfU=');
GiantDeg := DTMFromString('mwQAAAHic42RgYOBlQAABIJYFYmkgFgZiDi' +
'BmBWJxqJwUEMtB+XxAzAjVxw3EtpYmQJIJL+ZnIAwYicBwAAD+dAHh');
LargeDeg := DTMFromString('mrAAAAHic42BgYOAGYgkGCGABYmEgFoGyeY' +
'BYCIgFoFgCikF6uKB6zE0MgCQTTszPgB8wEsAwAADA6AGe');
DepositEss;
Wait(RandomRange(300, 400));
If FindBitMapTolerancein(Cosmic,pX, pY,MBX1,MBY1,MBX2,MBY2,45) then
begin
MMouse(pX, pY,7,7);
ClickMouse2(True);
Wait(RandomRange(400, 500));
If FindBitMapTolerancein(Astral,pX, pY,MBX1,MBY1,MBX2,MBY2,45) then
begin
MMouse(pX, pY,7,7);
ClickMouse2(True);
Wait(RandomRange(100, 250));
ClickMouse2(True);
If FindDTM(Laws,pX, pY,MBX1,MBY1,MBX2,MBY2) then
begin
MMouse(pX, pY,7,7);
ClickMouse2(True);
Wait(RandomRange(400, 500));
end else
TerminateScript;
end;
CloseBank;
Wait(RandomRange(1000, 1200));
Ftab(Tab_Magic);
Wait(RandomRange(800, 921));
If FindDTM(RepairPouchSpell,pX, pY,MIX1,MIY1,MIX2,MIY2) then
begin
MMouse(pX, pY,4,4);
ClickMouse2(True);
FTab(Tab_Inv);
end;
If FindDTM(GiantDeg, px, py, MIX1, MIY1, MIX2, MIY2) then
begin
MMouse(pX, pY,4,4);
ClickMouse2(True);
Inc(Pouch);
end else
If FindDTM(LargeDeg, px, py, MIX1, MIY1, MIX2, MIY2) then
begin
MMouse(pX, pY,4,4);
ClickMouse2(True);
Inc(Pouch);
end;
Wait(RandomRange(500, 1000));
Opanbank;
If FindBitMapTolerancein(Cosmic,pX, pY,MIX1,MIY1,MIX2,MIY2,45) then
Repeat
MMouse(pX, pY,7,7);
ClickMouse2(True);
Until Not FindBitMapTolerancein(Cosmic,pX, pY,MIX1,MIY1,MIX2,MIY2,45);
Wait(RandomRange(400, 500));
If FindBitMapTolerancein(Astral,pX, pY,MIX1,MIY1,MIX2,MIY2,45) then
Repeat
MMouse(pX, pY,7,7);
ClickMouse2(True);
Until Not FindBitMapTolerancein(Astral,pX, pY,MIX1,MIY1,MIX2,MIY2,45);
Wait(RandomRange(100, 250));
If FindDTM(Laws,pX, pY,MIX1,MIY1,MIX2,MIY2) then
DepositLaw;
WithDrawEss;
end;
FreeBitMap(Astral);
FreeBitMap(Cosmic);
FreeDTM(laws);
FreeDTM(RepairPouchSpell);
end;
Last edited by Recursive; 06-17-2012 at 04:22 AM.
It's shit, really.. It runs like a snail to the ruins, it stucked in the second run for me, and the biggest problem is - it doesn't support Massive pouches.
awesome
something is going wrong with the duel ring withdrawing and with the depositing or the law runes. It also doesn't count the runes made correctly bcouse of this
Edit: there is some memory leak, can't find where. using 1.5 gb ram right now lol,
Last edited by stoffel; 06-30-2012 at 10:08 PM.
Compiled successfully,but it stopped and exited after opening bank.Any help how to setup items ? Thanks.
Last edited by pencilkill; 07-02-2012 at 03:46 PM.
i downloaded your sps maps and now when i run the script it says this
SPS_GetMyPos: Finished in 421 ms. Result = (-1, -1)
SPS_GetMyPos: Finished in 437 ms. Result = (-1, -1)
SPS_GetMyPos: Finished in 406 ms. Result = (-1, -1)
[09:57:27] [ ] Attempted to walk path, result was: "False"
As always putonajonny;great script! Works like a charm! Thank you so much for sharing this script!I will post a prog later.
Edit:
There is a few bugs. Or a couple of them. I will try to describe them.
Bug one: I choose a tab and put my essence in it together with the logs and the rings, and i use "EssenceSlot = 15" and press play. It starts up and does the check for rc lvl and detecting the ring. It opens the bank and withdraws the essence from spot 15. Everything works fine until the player is back at the bankchest, it opens the bank, then the script is clicking a another tab in the bank. The script declare that either we are out of essence or wrong player and logs out. This is a huge problem.
Bug two: When the script is running and it detects that the ring only got one charge left it withdraws another one. But it does not bank the old ring and it does not wear the new ring and just leaves it in the inventory and starts to withdraw the essence and continue to make runes and uses the ring in the inventory. When the ring is almost empty the script withdraws another ring and does not wear that one either. After a while when the inventory is full and a new ring cant be withdrawn the script logs out.
Bug three: This is connected with bug number two in the way that it does not wear a new ring. But the script it self is very good, but it does not bank the runes that have been made so far.
Prog. (i think some of the numbers are not correct but the total number of runes was 1374.)
[------------------------------------------------]
[ ]
[ Enlightened Law Runner ]
[ Version: 2 ]
[------------------------------------------------]
[ Time Running: 1 Hours, 43 Minutes and 20 Seconds]
[ Law Runes Crafted: 1374 ]
[ Runes/Hour: 797 ]
[ Essence/Hour: 589 ]
[ Runes/Essence: 13.55 ]
[ Profit Made: 3316.5k ]
[ Profit/Hour: 1925k ]
[ Time/Run: 2 min 38 sec ]
[ Profit/Run: 85038gp ]
[ XP Gained: 9633 ]
[ XP/Hour: 6k ]
[ Current Level: 86 ]
[ XP To Next Level: 205543 ]
[ Time To Next Level: 36 hr 45 min 9 sec ]
[ XP to Level 90: 1166k ]
[ Time To Level 90: 208 hr 30 min 27 sec ]
[------------------------------------------------]
Last edited by feh55; 07-06-2012 at 07:43 PM.
Hi, I apologize if I am missing something simple and obvious, but I am having difficulties after arriving at Entrana via balloon. It gets stuck at that point. I believe I am using SPS 2.0 fully updated and put the 2 Castle War maps from OP into the Simba\Includes\SPS\img\runescape_surface folder (which helped the script get unstuck from Castle Wars initially).
Any help provided is greatly appreciated and I understand your time is valuable. My debug is posted below (with name changed):
[13:07:10] [s_guy] Checked for quest symbol, result was: "False"
[13:07:10] [s_guy] Checked for cook symbol, result was: "False"
[13:07:10] [s_guy] Checked for the Green Click To Continue, Result was: "False"
[13:07:10] [s_guy] Checked for water symbol, result was: "True"
[13:07:10] [s_guy] Changed status to: "Last Dash To The Alter"
[13:07:10] [s_guy] Performing some antiban
[13:07:10] [s_guy] Antiban Done
[13:07:10] [s_guy] Checking Randoms
[13:07:10] [s_guy] Login Status: "True"
[13:07:11] [s_guy] Checked for randoms, result was: "False"
SPS_MergeAreas: Merged areas in 156 ms.
[SPS] SPS_Setup() took 203 ms. Areas: ['7_7', '7_8', '8_7', '8_8']
[13:07:12] [s_guy] Lets go to the alter
SPS_GetMyPos: Finished in 1062 ms. Result = (3519, 3623)
SPS_GetMyPos: Finished in 1063 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1078 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1047 ms. Result = (3475, 3443)
SPS_GetMyPos: Finished in 1047 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1078 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1063 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1078 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1063 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1047 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1062 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1078 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1046 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1062 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1110 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1078 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1062 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1062 ms. Result = (3475, 3447)
SPS_GetMyPos: Finished in 1078 ms. Result = (3475, 3447)
[13:07:33] [s_guy] Using RCing Symbol for last few steps
SPS_GetMyPos: Finished in 1063 ms. Result = (3475, 3447)
[13:07:35] [s_guy] Performing some antiban
[13:07:35] [s_guy] Antiban Done
[13:07:35] [s_guy] Checking Randoms
[13:07:35] [s_guy] Login Status: "True"
[13:07:35] [s_guy] Checked for randoms, result was: "False"
[13:07:35] [s_guy] Determining where in the loop you are up to
SPS_MergeAreas: Merged areas in 328 ms.
[SPS] SPS_Setup() took 547 ms. Areas: ['3_10', '4_10', '7_7', '7_8', '8_7', '8_8']
SPS_GetMyPos: Finished in 6891 ms. Result = (3071, 3239)
[13:07:42] [s_guy] Performing some antiban
[13:07:42] [s_guy] Antiban Done
[13:07:42] [s_guy] Checking Randoms
[13:07:42] [s_guy] Login Status: "True"
[13:07:42] [s_guy] Checked for randoms, result was: "False"
SPS_MergeAreas: Merged areas in 141 ms.
[SPS] SPS_Setup() took 219 ms. Areas: ['7_7', '7_8', '8_7', '8_8']
[13:07:43] [s_guy] Lets go to the alter
SPS_GetMyPos: Finished in 781 ms. Result = (-1, -1)
SPS_GetMyPos: Finished in 781 ms. Result = (-1, -1)
SPS_GetMyPos: Finished in 781 ms. Result = (-1, -1)
SPS_GetMyPos: Finished in 782 ms. Result = (-1, -1)
SPS_GetMyPos: Finished in 781 ms. Result = (-1, -1)
SPS_GetMyPos: Finished in 781 ms. Result = (-1, -1)
SPS_GetMyPos: Finished in 797 ms. Result = (-1, -1)
SPS_GetMyPos: Finished in 782 ms. Result = (-1, -1)
SPS_GetMyPos: Finished in 781 ms. Result = (-1, -1)
SPS_GetMyPos: Finished in 781 ms. Result = (-1, -1)
I thought perhaps updated SPS Entrana images might correct the problem and have been searching on how to make them. No luck so far but I am a little 'technically challenged.' =D
S Guy
Is this script out of date?
[Error] C:\Simba\Includes\SRL/SRL/Misc/Smart.simba(46:19): Invalid number of parameters at line 45
Compiling failed.
I am also getting this error message
[Error] C:\Simba\Includes\SRL\SRL\Misc\Smart.simba(56:19): Invalid number of parameters at line 55
Compiling failed.
There are currently 1 users browsing this thread. (0 members and 1 guests)