amazing script! thanks alot dude, really awesome!
so it automatixly detects which monster u are using?
amazing script! thanks alot dude, really awesome!
so it automatixly detects which monster u are using?
Thanks! I've updated the script to use those and made it grab your RC level so it can dynamically check the requirements on the fly. It will also grab your level ~1.5 hours of running (It's random).
Added my thanks to the first post
See below
Could you post them please? Wouldn't hurt to help out the F2P people
Redownload the script from the first post please!
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
Kyle, want to add something like this in there to change the camera angle? I got this idea because sometimes while your syphoning an essMob a really good node pops up, and it doesn't click it because its stuck in the other loop!
Simba Code:if TimeFromMark(M) > (1200 + random(1000)) then
begin
MakeCompass(random(360));
MarkTime(M);
end;
Currently: Very busy
Future Goals: finish nursing school, RS later.
Oh goodness a release from Kyle, must check it out! Congrats on the release
That would change it almost every 2 seconds. You mean something like this?
Simba Code:procedure MainLoop();
var
fObj : TObj;
x, y, i, M : Integer;
begin
repeat
if(TakeBreaks)then BreakHandler(BreakIn, BreakFor, Bir, Bfr);
if(TimeFromMark(T) > 120000)then
Proggy;
if(TimeFromMark(RCt) > (3600000 + RandomRange(-1800000, 1800000)))then
begin
RCLvl := GetSkillLevel(SKILL_RUNECRAFTING);
MarkTime(RCt);
end;
for i := 0 to High(Objects) do
begin
fObj := GetObject(i);
if(RCLvl >= fObj.LvlReq)then
begin
if(K_FindObj(x, y, i))then
begin
MarkTime(M);
Wait(RandomRange(500, 750));
repeat
Wait(100);
FindNormalRandoms;
if(TimeFromMark(M) > (10000 + RandomRange(1000, 5000)))then
MakeCompass(Random(360));
until(not(IsUpTextMultiCustom(fObj.UpText)));
end;
end;
end;
FindNormalRandoms;
AntiBan();
until(not(LoggedIn));
end;
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
lol yes! Sorry bout that, i didn't include the whole mainloop and my time was very short, but i guess it would have to go in the finder function, not the mainloop.
Hmm, it does help finding nodes, but not as actively as I would like. sadly, that appears to be the extent of that ability.
Last edited by JN13; 05-01-2012 at 09:31 PM.
Currently: Very busy
Future Goals: finish nursing school, RS later.
It would have to go in the mainloop because the finder function is only called once, then the repeat kicks in. By moving the compass, the mouse will move off of the current object forcing the until() condition to fire. This make the loop start over again, which will search for the objects.
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
I'm testing the waiting times now, once I get a good one I'll update the script![]()
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
I looked though the revised code from yesterday to today.. wow.
I thought my Case which Of was clever... I may be thinking of trying out the with.. do
Simba Code:with Objects[objBodyHound] do
begin
Name := 'Body Hound';
UpText := ['ody', 'ody ess', 'Body', 'Siphon Body'];
Color := 14916236;
Tol := 17;
Hue := 0.07;
Sat := 2.11;
end;
Give it a shot.
Works perfectly for me (on my F2P account on Body Esshounds).
(Oh, and as far as I know, all Esshounds look identical so this should work for those as well - just change the UpText!)
Edit: I suggest editing the for loop so it only looks for objects you want to siphon.
For example if you only want to siphon Blood, Death and Soul Wraiths you can use
It's crude but it works.Simba Code:for i := 0 to 2 do
If you want to only search for say... Soul Wraiths and Bloody Skulls then you may want to shuffle them around in the SetupObjects procedure so they're number 0 and 1 and you just use
Simba Code:for i := 0 to 1 do
Last edited by honeyhoney; 05-01-2012 at 09:45 PM.
It still sometimes stops running randomly it will just say
Time Running: 11 Minutes and 26 Seconds
Experience Earned: 7618
Experience/Hour: 39600
Suscessfully executed. <------------ i put that in there because i already restarted the sctipt but thats what happens and the script just stops curious if im causing this
Updated the script! Think I got a good time to break out of the waiting loop, if it's not good enough it's easy for you to change in the MainLoop procedure![]()
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
idk if it's just me, but seems that it sometimes will hover over that gold icon in the top left corner for a few seconds.
I added this right after middletpaex:
If Length(atpa[a]) < 50 then
Continue;
50 is working well, but i can't access all the stuff and haven't gotten all the things i can to make sure there is enough color in there for 50
Red & Green Salamander Hunter // Construction // Gilded Altar // Major help w/ Kyles Runespan // VWB Smither // PhoenixFeathers // GemCutter // Bonfire // LRC Miner // Spell Tab Maker // ApeAtollAgility // IvyWC // RoguesCooker // Herblore // AshamanButterfly // AshamanPowerMiner // Fletcher // LividFarm
Hmm, ok. I never saw that happen but thanks for the update and fix!![]()
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
It might just be this instance of rs idk, had it print what it was coming up with when it spazzed over it
20
15
4
1
3
37
20
15
4
1
real small amounts
Simba Code:Writeln(tostr(Length(atpa[a])));
If Length(atpa[a]) < 50 then
Continue;
Both of those help make it more accurate (can make it in a range of what it should be) so it won't ever mess up, focus on players, or w/e. Might not be needed though as it could have just been me
Edit: could have like a max and min length for each record as i just saw it skip over skulls b/c of the 50 thing
Last edited by Ashaman88; 05-01-2012 at 10:22 PM.
Red & Green Salamander Hunter // Construction // Gilded Altar // Major help w/ Kyles Runespan // VWB Smither // PhoenixFeathers // GemCutter // Bonfire // LRC Miner // Spell Tab Maker // ApeAtollAgility // IvyWC // RoguesCooker // Herblore // AshamanButterfly // AshamanPowerMiner // Fletcher // LividFarm
I can add a min count to the record laterI don't have access to all of the objects, so the colors might have to be redone too,
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
Red & Green Salamander Hunter // Construction // Gilded Altar // Major help w/ Kyles Runespan // VWB Smither // PhoenixFeathers // GemCutter // Bonfire // LRC Miner // Spell Tab Maker // ApeAtollAgility // IvyWC // RoguesCooker // Herblore // AshamanButterfly // AshamanPowerMiner // Fletcher // LividFarm
rc 78, blood ess:
Time Running: 5 Hours, 57 Minutes and 3 Seconds
Experience Earned: 236917
Experience/Hour: 39600
flawless indeed![]()
Last edited by Bulls; 05-01-2012 at 10:51 PM.
This looks like it is going to rival Flights release! Sorry I haven't contributed but real life gets in the way sometimes!
Truly amazing what a community can do in one day! testing now =D
kyle i really suggest using my procedures for xp. its a constant update of it everytime you call your proggy and it doesnt need to look at the stats tab to get the info
Are any of these possible with 1 runecrafting?
There are currently 1 users browsing this thread. (0 members and 1 guests)