PDA

View Full Version : [07Scape] TheAutoCurser



Pages : [1] 2

Sequence
02-27-2013, 08:55 PM
http://img17.imageshack.us/img17/1997/autocurseryeye.png


Thought it was finally time for my first post.
I saw that there's already an auto curser, but I'll just add mine as well.

Requirements:
1. SRL and P07Include
2. Level 20 magic
3. SMART for RS 2007

NOTE: Sometimes you will have to stop the script and login to SMART manually, and then start the script again!

Instructions:


(************************************************* *******)
(* TheAutoCurser - Made by Sequence *)
(************************************************* *******)
(* 1. Specify how many casts you want to do. *)
(* 2. Start the script, and enter login info *)
(* 3. Be sure to stand at the Monk of Zamorak *)
(* in the cage at Varrock Castle *)
(************************************************* *******)



SMART Support
If you don't know how to set up SMART for 07Scape check this link: http://villavu.com/forum/showthread.php?t=97599


Without SMART
To run the script without SMART comment out line 3 and line 256


Line 3:
//{$DEFINE SMART}

Line 246:
//SetupSRL;



Features:
1. Anti-ban
2. Specify how many casts you want to do
3. Progress Report
4. GUI to log in
5. SMART Support
6. Multiple NPCs and Locations

http://img824.imageshack.us/img824/9251/skrmbillede20130304kl15.png


Skeletons in Varrock sewer
http://img18.imageshack.us/img18/1963/varrocksewerskeletons.png


Credits:
Sequence - Creating the script
DannyRS (http://villavu.com/forum/member.php?u=109382) - Creating the RS07 Include
Harry and Shuttleu - AutoUpdater procedure
Press Play (http://villavu.com/forum/member.php?u=32385) - Helped me with the GUI


ChangeLog:


[1.0]
- Casts the spell "Curse" at the Monk of Zamorak in Varrock castle
- Contains basic AntiBan
- Specify how many casts you want to do
- Updates to newest version of P07Include if not already updated

[1.1]
- Added an Auto Updater
- Decreased time between casts
- Will now logout if monk not found

[1.2]
- Added a GUI for logging in
- Added a Progress Report (It's not 100% accurate)
- Fixed some minor log out issues

[1.21]
- Removed the AntiLeach
- GUI closes when button pressed
- More human-like mouse movement
- SMART Support

[1.22]
- Replaced the P07_CastSpell function with my own procedure
- Minor changes to the progress report.

[1.3]
- Added Skeletons in the Varrock Sewer
- Updated GUI (big thanks to 'Press Play')

[1.31]
- Less miss-clicks
- Removed logout if npc not found

[1.32]
- Less miss-clicks



Download:

npenfold
02-27-2013, 08:58 PM
Thanks, do you know why my mouse moves around the screen for no reason without doing anything? I am using google chrome

Sequence
02-27-2013, 09:10 PM
Thanks, do you know why my mouse moves around the screen for no reason without doing anything? I am using google chrome

Running fine for me with firefox, I'll test using chrome in a minute.

- Have you set your game at brightest?
- Solved antileach?
- Dragged the crosshair to your game?

npenfold
02-27-2013, 09:12 PM
Yes, yes and yes sir

Sequence
02-27-2013, 09:42 PM
Updated the script.
- Updated tolerance.
- Modified antileach a bit

obsessive
02-28-2013, 12:25 AM
Updated the script.
- Updated tolerance.
- Modified antileach a bit

I keep getting:


Exception in Script: Unable to find file 'P07IncIude.Simba' used from 'C:\Users\Anthony\Desktop\Simba\TheAutoCurser.simb a'

It's in the same spot as my other scripts and they all work. It's in both C:\Simba\Includes and 'C:\Users\Anthony\Desktop\Simba\Includes

obsessive
02-28-2013, 12:26 AM
Updated the script.
- Updated tolerance.
- Modified antileach a bit

Nevermind. Anti-leach. Couldn't distinguish between the two.

recpaintballer89
02-28-2013, 06:34 AM
Great script, will see how it runs over a decent amount of casts and give feedback. I'm new to the community, and to SIMBA but wrote SCAR years ago, and have messed with scripting for years...

Your anti-leech is pretty annoying, so it must be doing its job.... bit of trial and error, not even knowing the language and you can solve it, just based on what the console tells ya.

obsessive
02-28-2013, 07:26 AM
Works great, thanks for this. Funny how since these scripts have been released, it's impossible to find a unoccupied monk in any world ;P

obsessive
02-28-2013, 10:55 AM
How long is the anti ban meant to go for? Mine seems to not stop after ~5 minutes or so. It just keeps repeating the same things over and over.

Is it all good, I might have accidentally changed something:

Function AntiBan : Boolean;
begin
case random(100) of
0: P07_HoverSkill('magic', random(5000));
1: P07_MakeCompassDegree(RandomRange(140, 170));
2: P07_MakeCompassDegree(RandomRange(190, 220));
3: MMouse(random(650), random(350), 0, 0);
4: CheckInventory;
5: CheckFriends;
end;
end;

For now I just disabled anti ban and do some legit curses every so often.

Sequence
02-28-2013, 11:45 AM
Great script, will see how it runs over a decent amount of casts and give feedback. I'm new to the community, and to SIMBA but wrote SCAR years ago, and have messed with scripting for years...

Your anti-leech is pretty annoying, so it must be doing its job.... bit of trial and error, not even knowing the language and you can solve it, just based on what the console tells ya.

Thank you, I'm looking forward to the feedback.
I made 1100 casts myself yesterday before running out of runes when I was testing it.


@Obsessive
At what part of the antiban did you have problems? I'll try to find more antibans to add in the next update.

Increasing the number in random() will make it do the antiban less often.

Function AntiBan : Boolean;
begin
case random(300) of
0: P07_HoverSkill('magic', random(5000));
1: P07_MakeCompassDegree(RandomRange(140, 170));
2: P07_MakeCompassDegree(RandomRange(190, 220));
3: MMouse(random(650), random(350), 0, 0);
4: CheckInventory;
5: CheckFriends;
end;
end;

obsessive
02-28-2013, 11:59 AM
http://img17.imageshack.us/img17/1997/autocurseryeye.png


Thought it was finally time for my first post.
I saw that there's already an auto curser, but I'll just add mine as well.

Requirements:
1. SRL and P07Include
2. Solving a simple anti-leach
3. Level 20 magic


Instructions:


(************************************************* *******)
(* TheAutoCurser - Made by Sequence *)
(************************************************* *******)
(* 1. Solve the anti-leach *)
(* 2. Enter your username and password *)
(* 3. Specify how many casts you want to do. *)
(* 4. Walk to the Monk of Zamorak in Varrock *)
(************************************************* *******)



Features:
1. AntiBan
2. Specify how many casts you want to do
3. Simple AntiLeach


Credits:
Sequence - Creating the script
DannyRS (http://villavu.com/forum/member.php?u=109382) - Creating the RS07 Include
Unknown - Creating the base of the AntiBan, I can't remember where I got it and I couldn't find it again.


ChangeLog:


[1.0]
- Casts the spell "Curse" at the Monk of Zamorak in Varrock castle
- Contains basic AntiBan
- Specify how many casts you want to do
- Updates to newest version of P07Include if not already updated



Download:

Okay i'll try that. Have you got the SMART client to work with Old scape? I'll pay you if you can help me set it up. :]

Sequence
02-28-2013, 03:17 PM
Update:



[1.1]
- Added an Auto Updater
- Decreased time between casts
- Will now logout if monk not found



Please report any errors.

Woburt
02-28-2013, 05:07 PM
[Error] C:\Simba\Scripts\TheAutoCurser v1.1.simba(43:1): Identifier expected at line 42

Any idea what this is? Kind of new to all of this.

Sequence
02-28-2013, 05:08 PM
[Error] C:\Simba\Scripts\TheAutoCurser v1.1.simba(43:1): Identifier expected at line 42

Any idea what this is? Kind of new to all of this.

It's the AntiLeach.

77tontos
02-28-2013, 05:19 PM
so how does this work? cuz you have to wait for the curse to be finished?

Sequence
02-28-2013, 05:31 PM
so how does this work? cuz you have to wait for the curse to be finished?

Wear some kind of armor like full iron to decrease you magic attack.

l6x
02-28-2013, 05:53 PM
I'm getting

[Error] C:\Users\Administrator\Desktop\Simba\Includes\SRL/SRL/core/simba.simba(462:14): Unknown identifier '' at line 461
Compiling failed.

I don't think this is the anti leach as it is an error from a core file, correct?

EDIT: I believe i found the answer, I should just need to update

sprunt
02-28-2013, 05:56 PM
Does it do randoms?

Sequence
02-28-2013, 06:54 PM
Does it do randoms?

No, I don't think you'll find any 07 scripts that does randoms yet.

ohshot
02-28-2013, 08:08 PM
Works great. Great job mate. Cheers. Although sometimes it logs out randomly, but nothing a little baby sitting can't fix.

Sequence
02-28-2013, 08:32 PM
Works great. Great job mate. Cheers. Although sometimes it logs out randomly, but nothing a little baby sitting can't fix.

Thanks for the feedback.

I made it log out if it can't find the monk in case it miss-clicks and walks away or something like that. The antiban sometimes turns the screen so the monk is hidden too much, but it should be fixed in the next version :)

Sequence
02-28-2013, 09:02 PM
Update:

http://i458.photobucket.com/albums/qq302/Abemissen/gui_zps7cefcd1c.png



[1.2]
- Added a GUI for logging in
- Added a Progress Report (It's not 100% accurate)
- Fixed some minor log out issues


People who has already downloaded and solved the antileach on v1.1, can simply just run v1.1 to get the updated version in the /Simba/Scripts folder.

Whitefangz
02-28-2013, 10:03 PM
can some one help me? I have this error.


[Error] C:\Users\Christopher\Downloads\TheAutoCurser v1.2.simba(64:1): Identifier expected at line 63
Compiling failed.

nmka
03-01-2013, 06:46 AM
Thanks! Good job) Leveled mage to alches

berkka
03-01-2013, 09:12 AM
Dosn't work for me.. only says Exception in Script: Unable to find file 'P07IncIude.Simba' used from 'C:\Users\Martin\Downloads\TheAutoCurser v1.2 (1).simba'

Sequence
03-01-2013, 11:08 AM
Dosn't work for me.. only says Exception in Script: Unable to find file 'P07IncIude.Simba' used from 'C:\Users\Martin\Downloads\TheAutoCurser v1.2 (1).simba'

It's a part of the antileach.



Thanks! Good job) Leveled mage to alches

No problem :)

berkka
03-01-2013, 04:31 PM
[QUOTE=Sequence;1182165]It's a part of the antileach.



i dont understand.. So because im new on this site i cant use it or what:)?

Sequence
03-01-2013, 04:56 PM
i dont understand.. So because im new on this site i cant use it or what:)?

No, you will just have to fix the small errors I created intentionally.

BryggarHans
03-01-2013, 05:01 PM
/* Hey! Im completely new to this site, and I've just finished reading around on the forum and setting up simba. I really like the idea of requiring the users of script to have some understanding of the scripts they use, but for now I feel like I'm getting blocked before I even started.
I'm getting the same error as poster above, have been checking through the code numerous times now. I have some basic knowledges in Java, C# and ADA, but still can't rule out what to do with the "Exception in Script: Unable to find file 'P07IncIude.Simba' used from 'C:.." error. Any help, or at least a tip on where to start/how to think? */

NVM I found it out!

gunggong
03-01-2013, 05:47 PM
i am sorry but I am new to simba and I dont have any experience in scripting.. I have read all through the help and I couldnt now find how to solve anti leaching please help I really want to use this script

Sequence
03-01-2013, 08:24 PM
i am sorry but I am new to simba and I dont have any experience in scripting.. I have read all through the help and I couldnt now find how to solve anti leaching please help I really want to use this script

Read some of the basic guides, the antileach isn't too difficult.

gunggong
03-01-2013, 09:16 PM
Thanks figured it all out after posting that

Sprunkas
03-02-2013, 10:29 AM
Hey, i solved the anti-leach, but then gui shows i pressing ,,Save settings'' and doing nothing...

Sequence
03-02-2013, 10:34 AM
Hey, i solved the anti-leach, but then gui shows i pressing ,,Save settings'' and doing nothing...

Press Save and then just close the GUI.
I'll make it close automatically in the next version.

MostWanted
03-02-2013, 09:05 PM
Where can we find these guides on solving anti-leech? I've been looking everywhere! :(

Sequence
03-03-2013, 02:32 AM
Where can we find these guides on solving anti-leech? I've been looking everywhere! :(

Read some of the basic scripting guides, I don't think you'll find any guides on solving an antileach.
I'm considering to remove the antileach in the next version though.

mattyayeit
03-03-2013, 03:27 PM
Ive tried changing a few things here but cant see whats wrong its the like with procedure check friends :S

[Error] C:\Simba\Includes\TheAutoCurser v1.2.simba(63:1): Identifier expected at line 62

procedure CheckFriends;
begin
P07_TabInventoryTab(9);
Wait(RandomRangeTroll(300, 500));
MMouse(650, 270, 3, 3);
Wait(RandomRange(2000, 3000));
end;

mattyayeit
03-03-2013, 03:44 PM
Someone please help, if i delete that check friend procedure it just goes onto check invo procedure? :S

Sequence
03-03-2013, 04:03 PM
Someone please help, if i delete that check friend procedure it just goes onto check invo procedure? :S

I'm not sure what you have changed and why?
If it's because you're trying to solve the antileach you can just wait for a while, as I'll release the next update without antileach later today.

mattyayeit
03-03-2013, 04:21 PM
I'm not sure what you have changed and why?
If it's because you're trying to solve the antileach you can just wait for a while, as I'll release the next update without antileach later today.


When i change the include, it goes to that line..

procedure CheckFriends;

and i cant seem to see whats wrong with it? :S

procedure CheckFriends;
begin
P07_TabInventoryTab(9);
Wait(RandomRangeTroll(300, 500));
MMouse(650, 270, 3, 3);
Wait(RandomRange(2000, 3000));
end;

l;ooks same in all other versions aswell.. it says identifier expected

Gudi
03-03-2013, 04:34 PM
Just read carefully and compare some lines to each other and You will find out ;)

Tested it today and i can say its pretty good script :)

mattyayeit
03-03-2013, 04:38 PM
i keep looking, i dont seem to see anything different? i changed spellings i mean is troll even meant to be in there.

mattyayeit
03-03-2013, 04:47 PM
okay nevermind, think i got it just removed half of them //end; things :S

Sequence
03-03-2013, 05:52 PM
The script has been updated a bit and the AntiLeach has been removed.
(If you already have one of the previous versions, it will update automatically.)

SMART Support
If you don't know how to set up SMART for 07Scape check this link: http://villavu.com/forum/showthread.php?t=97599



[1.21]
- Removed the AntiLeach
- GUI closes when button pressed
- More human-like mouse movement
- SMART Support


To do:
- Add other locations. (suggestions are welcome)

Plasmidian
03-03-2013, 06:10 PM
I'm trying really hard with this anti-leech, but i can't get the end to work. I had to modify the anti-ban to remove checkfriends because i couldn't figure it out, and now i've got this.

[Error] (36819:1): Unexpected end of file at line 36818
Compiling failed.


Begin
//StartUp;
DTM;
repeat
CastCurse
//AntiBan
Wait(RandomRange(100, 200));
Inc(I);
until(I = Casts);
//end.

jason3460
03-03-2013, 06:32 PM
Hi, im having some trouble i just get this when i run the script and enter my user and password, then click save settings, the bot doesn't log in or do anything


Checking TheAutoCurser VersionNumber
Local : 1.21 / Latest : 1.21
You already have version 1.21 of TheAutoCurser
Checking P07Include VersionNumber
Local : 1.7 / Latest : 1.7
You Have The Latest Version of P07Include
Checking P07Include VersionNumber
Local : 1.7 / Latest : 1.7
You Have The Latest Version of P07Include

Sequence
03-03-2013, 07:03 PM
I'm trying really hard with this anti-leech, but i can't get the end to work. I had to modify the anti-ban to remove checkfriends because i couldn't figure it out, and now i've got this.

[Error] (36819:1): Unexpected end of file at line 36818
Compiling failed.

There is no antileach in version 1.21, make sure that you have enabled SMART for RS 2007.




Hi, im having some trouble i just get this when i run the script and enter my user and password, then click save settings, the bot doesn't log in or do anything

Have you enabled SMART for RS 2007?

Try running the script below to see if your SMART works.


program new;
{$DEFINE SMART}
{$i SRL/SRL.simba}

begin
SetupSRL();
end.

Plasmidian
03-03-2013, 07:54 PM
k it's opening now but the dialog box won't appear?

Sequence
03-03-2013, 08:04 PM
k it's opening now but the dialog box won't appear?

Read the OP



SMART Support
If you don't know how to set up SMART for 07Scape check this link: http://villavu.com/forum/showthread.php?t=97599

vexic
03-03-2013, 08:32 PM
I suggest adding a skeleton area, at the wilderness ditch :)

jason3460
03-03-2013, 08:33 PM
Have you enabled SMART for RS 2007?

Try running the script below to see if your SMART works.


program new;
{$DEFINE SMART}
{$i SRL/SRL.simba}

begin
SetupSRL();
end.

Yes i have, if i login manually the script works perfectly fine..

Sequence
03-03-2013, 08:38 PM
I suggest adding a skeleton area, at the wilderness ditch :)

I will have a look at it, I'm currently working on adding the skeletons at the Varrock sewers.



Yes i have, if i login manually the script works perfectly fine..

Sometimes I have to login manually too, I'm currently trying to find out what's causing the problem.
But at least it's working when you've logged in :)

nickrze
03-03-2013, 09:03 PM
I can't figure out why the script wont work. I have setup SMART Rs 07 and followed the instructions in the OP. Any help?

[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(295:135): Invalid number of parameters at line 294
Compiling failed.

lpodtouch
03-03-2013, 09:36 PM
[Error] C:\Users\Gateway\Downloads\TheAutoCurser v1.21.simba(50:5): Unknown identifier 'P07_CastSpell' at line 49
Compiling failed.

procedure CastCurse;
begin
If (Not FindColorSpiralTolerance(x, y, MonkColor, 176, 84, 393, 320, 20)) then
LogOutPlayer
else begin
P07_MakeCompassEast;
Wait(RandomRange(100, 250));
P07_CastSpell(12);
Wait(RandomRange(900, 1100));
MMouse(RandomRange(X - 4, X + 4), RandomRange(y - 4, y + 4), 0, 0);
ClickMouse2(mouse_left);
Inc(CastsDone);
end;
end;


anyone help please?

fluffy22
03-03-2013, 10:14 PM
Nice script, more locations needed though, nearly impossible to find a world for the monk now lol.

Sequence
03-03-2013, 10:18 PM
Nice script, more locations needed though, nearly impossible to find a world for the monk now lol.

Skeletons in Varrock sewer has almost been added, I'm currently doing a lot of testing and will update the GUI soon :)

IceTruckKiller
03-03-2013, 10:26 PM
I've completed the anti-leech, but the GUI comes up at the start then wont go away.

Sequence
03-03-2013, 10:30 PM
I've completed the anti-leech, but the GUI comes up at the start then wont go away.
You just have to close the GUI after saving.
In version 1.21 that issue us fixed, check your scripts folder (C:/Simba/Scripts) it should be automatically downloaded (and it has no antileach).

IceTruckKiller
03-03-2013, 10:34 PM
You just have to close the GUI after saving.
In version 1.21 that issue us fixed, check your scripts folder (C:/Simba/Scripts) it should be automatically downloaded (and it has no antileach).

Hi - tried this and I'm getting this error http://gyazo.com/4347400b572b706c3961a67c5ba08a98

Sequence
03-03-2013, 11:02 PM
Hi - tried this and I'm getting this error http://gyazo.com/4347400b572b706c3961a67c5ba08a98

You could try to search on google?
http://www.faqforge.com/windows/fix-the-program-cant-start-because-msvcr100-dll-is-missing-from-your-computer-error-on-windows/

Fureddy
03-04-2013, 02:35 AM
Sometimes the script clicks the enchant bolts spell, than logs out and stops the script.

Sequence
03-04-2013, 06:32 AM
Sometimes the script clicks the enchant bolts spell, than logs out and stops the script.

Must be a problem with the P07_CastSpell function, I'll have a look at it later today. Thanks for the feedback.

Sequence
03-04-2013, 12:25 PM
Run the script and it should update to version 1.22

Small update:


[1.22]
- Replaced the P07_CastSpell function with my own procedure
- Minor changes to the progress report.



Skeletons at the Varrock sewer will hopefully be added later today, I'm having some issues with the GUI.

Sequence
03-04-2013, 02:52 PM
Update:


[1.3]
- Added Skeletons in the Varrock Sewer
- Updated GUI (big thanks to 'Press Play')


I'll add a map of how to get to the Skeletons in my OP

Preview:
http://img824.imageshack.us/img824/9251/skrmbillede20130304kl15.png



I'm looking for more locations and NPCs to add, so if you know any good ones I'll take a look at them.

NOTE: I haven't tested the Skeleton location much, as I ran out of runes please report any bugs.

Hakuna
03-04-2013, 03:12 PM
Amazing script! Thank you :).
Only miss clicks a few times.

Sequence
03-04-2013, 03:21 PM
Amazing script! Thank you :).
Only miss clicks a few times.
Thank you and no problem :)

Where does it miss click, and does it stop the script from running?

Hakuna
03-04-2013, 03:59 PM
Thank you and no problem :)

Where does it miss click, and does it stop the script from running?

It miss clicks on the Wind Bolt spell(clicks too quick) and sometimes it doesn't even click the monk after selecting Curse.
But the script doesn't fuck up or stops from running. :) So it's all good.

Sequence
03-04-2013, 04:23 PM
It miss clicks on the Wind Bolt spell(clicks too quick) and sometimes it doesn't even click the monk after selecting Curse.
But the script doesn't fuck up or stops from running. :) So it's all good.

I'll have a look at it sometime today or tomorrow. Legit players miss-click sometimes too so it's not high priority right now.

fausic01
03-04-2013, 06:05 PM
it misclicks all the time which makes me lose my spot at the castle, pls fix and + its very slow..

J J
03-04-2013, 06:20 PM
Good progress :) You might want to look into TPA's so you can determine the position of the monk better :)
If you want you can use this or just use it as an example:

function ClickMonk: boolean;
var
i: Integer;
P: TPoint;
TPA: TPointArray;
ATPA: T2DPointArray;

begin
ColorToleranceSpeed(2);
SetColorSpeed2Modifiers(0.03, 0.16);

if FindColorsSpiralTolerance(P07_MSCX, P07_MSCY, TPA, 2633078, P07_MSX1, P07_MSY1, P07_MSX2, P07_MSY2, 18) then
begin
SplitTPAWrap(TPA, 8, ATPA);
ATPASize(ATPA, True);

for i:=0 to high(ATPA) do
if Length(ATPA[i]) > 50 then
begin
P := MiddleTPA(ATPA[i]);
MMouse(P.x, P.y, RandomRange(-6, 6), RandomRange(-6, 6));
ClickMouse2(1);
Wait(RandomRange(20, 300));
Result := True;
break;
end;
end;
end;

After clicking curse I also have the same wait. By looping this fast you make sure close to no-one can steal your monk unless they try very hard. I set my mousespeed at 16.

Got 19-55 mage by using that function in combination with a ClickCurse method :P Works well enough.. :)

Added a small antileech which you should be able to figure out, if not you can PM me - because you are new to TPA's.

Lazertag
03-04-2013, 10:15 PM
idk i leave it on and its working when i come back 5 mins later some other faggot stole it? i saw it misclick onetime or took too long and the other faggot stole it

Sequence
03-04-2013, 10:53 PM
Good progress :) You might want to look into TPA's so you can determine the position of the monk better :)
If you want you can use this or just use it as an example:

function ClickMonk: boolean;
var
i: Integer;
P: TPoint;
TPA: TPointArray;
ATPA: T2DPointArray;

begin
ColorToleranceSpeed(2);
SetColorSpeed2Modifiers(0.03, 0.16);

if FindColorsSpiralTolerance(P07_MSCX, P07_MSCY, TPA, 2633078, P07_MSX1, P07_MSY1, P07_MSX2, P07_MSY2, 18) then
begin
SplitTPAWrap(TPA, 8, ATPA);
ATPASize(ATPA, True);

for i:=0 to high(ATPA) do
if Length(ATPA[i]) > 50 then
begin
P := MiddleTPA(ATPA[i]);
MMouse(P.x, P.y, RandomRange(-6, 6), RandomRange(-6, 6));
ClickMouse2(1);
Wait(RandomRange(20, 300));
Result := True;
break;
end;
end;
end;

After clicking curse I also have the same wait. By looping this fast you make sure close to no-one can steal your monk unless they try very hard. I set my mousespeed at 16.

Got 19-55 mage by using that function in combination with a ClickCurse method :P Works well enough.. :)

Added a small antileech which you should be able to figure out, if not you can PM me - because you are new to TPA's.

Thanks, I'll have a look TPA's. This is actually my first simba script, I did some scar scripts a long time ago so I'm open for anything that will teach me more :P



idk i leave it on and its working when i come back 5 mins later some other faggot stole it? i saw it misclick onetime or took too long and the other faggot stole it

It could also have been the antiban, I'll comment it out in the next version as it might be a problem when it's crowded at the monk.

Mink
03-05-2013, 01:14 AM
[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(295:135): Invalid number of parameters at line 294

Sequence
03-05-2013, 06:27 AM
[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(295:135): Invalid number of parameters at line 294

I don't think you have set up SMART properly to load RS07.

Mink
03-05-2013, 06:34 AM
I don't think you have set up SMART properly to load RS07.

Smart works fine on every other script.

faster789
03-05-2013, 07:32 AM
Hey, overall nice script. Things I noticed is that it often misclick, and clicks the bolt next to the curse. Also, it sometimes clicks the curse and misses the monk by clicking behind it.

Good job though! :)

Edit: Some more problems- the mouse will hover the curse icon and then over the monk, without click neither sometimes. And I left it for 5 minutes, came back and it was upstairs.

LDaniel
03-05-2013, 02:58 PM
To everyone with the "Invalid number of parameters at line 294 compiling failed" error. Remember to change
{$DEFINE SMART} in the top of the script to {$DEFINE SMART8} with the "8".

gunggong
03-05-2013, 10:46 PM
it logs out when ur at monk in varrock.. while in sewers its like missing to click the curse

Kyle
03-05-2013, 11:24 PM
Ok, so I fixed the first anti-leach with invalid parameters, but the one with unknown identifier "RsReady" is killing me. Im usually pretty good with anti leach too. Any tips on where to start looking? Thanks!
EDIT: It logs out at zammy mage, works fine at sewers.
Perhaps add for it to switch skeles if ur curse hits?

gunggong
03-05-2013, 11:28 PM
Ok, so I fixed the first anti-leach with invalid parameters, but the one with unknown identifier "RsReady" is killing me. Im usually pretty good with anti leach too. Any tips on where to start looking? Thanks!
EDIT: Nvm wasn't anti leech haha, didnt change smart to smart8. Will post back with results!

how come i didnt do any anti leach and it starts alright?

Kyle
03-05-2013, 11:43 PM
Yea, now at skele's it cast like 1-4, hits inv and ends...

gunggong
03-05-2013, 11:44 PM
ikr...

Aegis
03-06-2013, 01:43 AM
Thanks, used this for a quick few dozen levels to start off. I made some very slight modifications, seeing how it would log-out randomly. However, I must say that it wasn't very comforting to have an auto updating script included with a pop-up GUI requesting a password/username. It's nifty and all, though :)

brian87
03-06-2013, 04:47 AM
GUI wont pop up?

Smeagol
03-06-2013, 06:35 AM
Will you update that script?

Sequence
03-06-2013, 08:07 PM
Hey, overall nice script. Things I noticed is that it often misclick, and clicks the bolt next to the curse. Also, it sometimes clicks the curse and misses the monk by clicking behind it.

Good job though! :)

Edit: Some more problems- the mouse will hover the curse icon and then over the monk, without click neither sometimes. And I left it for 5 minutes, came back and it was upstairs.

Thank for the feedback I'll look into that :)





Yea, now at skele's it cast like 1-4, hits inv and ends...

The Skeletons are only in a beta stage, I don't have many runes to test the script, I will temporarily remove the logout function though.




Thanks, used this for a quick few dozen levels to start off. I made some very slight modifications, seeing how it would log-out randomly. However, I must say that it wasn't very comforting to have an auto updating script included with a pop-up GUI requesting a password/username. It's nifty and all, though :)

I see your point, but everyone can read through the script and check that it's safe.




Will you update that script?

I think I have a temporarily fix to the missclicks released later.

YerAwsum
03-06-2013, 08:18 PM
Nice script! Although, as mentioned above - it seems to misclick a bit such as the spell left of the curse.

Sequence
03-06-2013, 08:40 PM
The miss-clicks have been decreased a lot with this temporarily fix:



[1.31]
- Less miss-clicks
- Removed logout if npc not found

brradbenedict
03-06-2013, 11:03 PM
Works almost flawlessly at the monk.
Skeletons have a lot of bugs though, mostly clicking the skeleton without having curse selected causing you to moonwalk away.

swag4life
03-07-2013, 12:06 AM
Great job! Just a quick note to people, do not wear desert boots when doing skeletons, the cursor goes to the boots every cast then the skeletons and looks very unnatural

swag4life
03-07-2013, 12:15 AM
Another tip, if you change line 158 to P07_MakeCompassSouth; then you can use this bot at the zammy monks west of falador by the zammy wine, try take the wine, jump the gap, start the bot. Have fun!

scimms
03-07-2013, 12:55 AM
good script except it misclicks alot in the spell book. If you fix that, it will be flawless :)

adeghati
03-07-2013, 12:57 AM
looks like a nice script, anyone know how to make it do other spells? (in order to get to 20 mage)
thanks :)
edit: Nevermind I just got it by hand.

djm995
03-07-2013, 02:44 AM
Almost Flawless! thanks for the script :)

Sequence
03-07-2013, 11:35 AM
can some one help me? I have this error.


[Error] C:\Users\Christopher\Downloads\TheAutoCurser v1.2.simba(64:1): Identifier expected at line 63
Compiling failed.

I think there's antileach on v1.2.

But you could download version 1.31?

faster789
03-07-2013, 06:34 PM
Alright the two main problems -

1) Clicks Wind bolt VERY often instead of Curse.

2) Clicks Enchant Crossbow Bolt spell causing a pop-up which pretty much ruins the entire script (try clicking the spell, you'll see).

Good luck. :)

PowerBotz
03-07-2013, 06:40 PM
Removed

Bench
03-07-2013, 06:45 PM
Don't click the Link above me, it is a phishing site.

Synyster
03-07-2013, 08:55 PM
I can't solve the Anti Leech D=

You have choosen to curse Skeletons at the Varrock sewer
Error: Exception: Font [P07UpChars] not found. at line 108
The following DTMs were not freed: [SRL - Lamp bitmap, 1, 2, 3, 4, 5]
The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap, SRL - NavBar Bitmap, SRL - Options Bitmap]

Sequence
03-07-2013, 09:02 PM
Alright the two main problems -

1) Clicks Wind bolt VERY often instead of Curse.

2) Clicks Enchant Crossbow Bolt spell causing a pop-up which pretty much ruins the entire script (try clicking the spell, you'll see).

Good luck. :)

That's weird when I tested the script after 1.31 it only clicked the bolt once.
I'll have a look at it, using MMouse and making it wait a while before clicking could probably solve it.

Thanks for the feedback :)


I can't solve the Anti Leech D=

You have choosen to curse Skeletons at the Varrock sewer
Error: Exception: Font [P07UpChars] not found. at line 108
The following DTMs were not freed: [SRL - Lamp bitmap, 1, 2, 3, 4, 5]
The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap, SRL - NavBar Bitmap, SRL - Options Bitmap]

There is no antileach.
Make sure you have set up smart for RS07

GIG Jumper
03-08-2013, 01:09 AM
That's weird when I tested the script after 1.31 it only clicked the bolt once.
I'll have a look at it, using MMouse and making it wait a while before clicking could probably solve it.

Thanks for the feedback :)



There is no antileach.
Make sure you have set up smart for RS07

There's no antileach? It's unable to click on skeletons for me, just hits curse hovers over them and I get this error in cmd, I attributed it to antileach but now i'm just confused and wasted 30 mins looking for antileach lol :P.

http://gyazo.com/edf5e454642473cadc70ead014648f3e

Edit 3: Tried at Monk at the monastery recommended by Bench, working great; awesome script!

Bench
03-08-2013, 07:26 PM
Yo guys if the varrock castle is crowded (most of the time it is) try this:

http://img547.imageshack.us/img547/9229/cursei.png

gvr323
03-08-2013, 10:01 PM
Two errors:
[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(295:135): Invalid number of parameters at line 294
Compiling failed.

and

[Error] C:\Simba\Includes\SRL\SRL\misc\SmartParams.Simba(7 8:8): Unknown identifier 'RSReady' at line 77
Compiling failed.

help?

scrim
03-08-2013, 10:53 PM
Two errors:
[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(295:135): Invalid number of parameters at line 294
Compiling failed.

and

[Error] C:\Simba\Includes\SRL\SRL\misc\SmartParams.Simba(7 8:8): Unknown identifier 'RSReady' at line 77
Compiling failed.

help?

install your smart properly man :DD

gvr323
03-08-2013, 10:54 PM
install your smart properly man :DD

I did install it properly, all the other scripts work fine

scrim
03-08-2013, 11:02 PM
I did install it properly, all the other scripts work fine

sounds lege :DD

gvr323
03-08-2013, 11:30 PM
Please I need some help. I have smart 8 set up and I redid everything just to make sure. However, everytime I try and start the script I get an error saying:[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(295:135): Invalid number of parameters at line 294
Compiling failed.

help????

Sequence
03-09-2013, 02:03 AM
Will be improving the script soon, I've been very busy with school this week.



Yo guys if the varrock castle is crowded (most of the time it is) try this:

http://img547.imageshack.us/img547/9229/cursei.png
Nice share m8 :thumbsup:



Two errors:
[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(295:135): Invalid number of parameters at line 294
Compiling failed.

and

[Error] C:\Simba\Includes\SRL\SRL\misc\SmartParams.Simba(7 8:8): Unknown identifier 'RSReady' at line 77
Compiling failed.

help?

Change the first line in the script from define smart to define smart8

Xeronate
03-09-2013, 07:34 AM
Good intentions, but I think you amde the script too complicated for what it is. It often clicks windbolt, enchant cross bow or nothing at all and it the wait time is too long. I even get wind strike often. The other curser is MUCH more accurate, the only problem is it isn't setup to run in smart.

Sequence
03-09-2013, 08:46 AM
[1.32]
- Less miss-clicks

Chrio
03-09-2013, 10:16 AM
*solved*

Chrio
03-09-2013, 11:09 AM
keeps going upstairs in Varrock. :l

roomis
03-09-2013, 12:16 PM
Not working too well right now. Tried to run it for 15 minutes, it missclicked Enchant atleast 4 times and i had to close it everytime myself. It also somehow managed to click healthpoints skill few times and it kept attacking the zombies without selecting curse -> walked around the river to melee them. It did manage to curse them few times, but it probably did more missclicks than curses :P

Not sure if the older ones are working better, but atleast for me the newest one doesnt work.

Nathankent
03-09-2013, 02:10 PM
It's saying I have P07Include 1.5 and wants me to restart the script but I have the latest.

Checking P07Include VersionNumber
Local : 1.5 / Latest : 1.7
New P07Include Version Available! Updating...
New P07Include Version Downloaded Please Restart Your Script!
Successfully executed.

gvr323
03-09-2013, 02:51 PM
When I start the script it does not log in, and when I log in and then start SMART it doesn't do anything?

Incarceron
03-09-2013, 03:23 PM
[Error] C:\Users\Austin\Desktop\TheAutoCurser v1.32.simba(114:3): Unknown identifier 'P07_DeclarePlayer' at line 113
Compiling failed.

I don't think this is the antileech, so I'm not sure what it is >.>

Sequence
03-09-2013, 04:11 PM
[Error] C:\Users\Austin\Desktop\TheAutoCurser v1.32.simba(114:3): Unknown identifier 'P07_DeclarePlayer' at line 113
Compiling failed.

I don't think this is the antileech, so I'm not sure what it is >.>

Put // before P07_DeclarePlayer In the script

Xeronate
03-09-2013, 06:26 PM
[1.32]
- Less miss-clicks

MUCH MUCH better. Thank you so much. What exactly did you change if you don't mind me asking? I editted some of the random ranges but was still having an issue.

Nathankent
03-09-2013, 10:35 PM
With SMART I get this -

Checking P07Include VersionNumber
Local : 1.5 / Latest : 1.7
New P07Include Version Available! Updating...
New P07Include Version Downloaded Please Restart Your Script!
Successfully executed.

Without SMART it works fine, any reasons for this?

Sequence
03-10-2013, 11:34 AM
MUCH MUCH better. Thank you so much. What exactly did you change if you don't mind me asking? I editted some of the random ranges but was still having an issue.

I used MMouse and made it wait a bit before clicking, instead of using MouseBox




With SMART I get this -

Checking P07Include VersionNumber
Local : 1.5 / Latest : 1.7
New P07Include Version Available! Updating...
New P07Include Version Downloaded Please Restart Your Script!
Successfully executed.

Without SMART it works fine, any reasons for this?

Go to the StartUp procedure and remove or mark out P07_AutoUpdate or whatever it's called

Nathankent
03-10-2013, 02:34 PM
I used MMouse and made it wait a bit before clicking, instead of using MouseBox



Go to the StartUp procedure and remove or mark out P07_AutoUpdate or whatever it's called

Thank you ;)

Frito
03-10-2013, 02:50 PM
Need to add in a run from combat antirandom. This is easy to do and I can link another script with this included if you'd like. Lost couple 100k in runes, but was my fault for looking away for a few minutes. Damn dwarf probably beat me up for not talking to him. -_-

Xeronate
03-10-2013, 08:28 PM
Yeah just use pixelshift if statement deal.

belzzy
03-10-2013, 09:20 PM
Downloaded 1.32, ran it got this
Too many parameters at 4:3

(EDIT: I CHANGED THE FIRST LINE FROM
{$DEFINE SMART} TO
{$DEFINE SMART 8} that's how i get that error)

is this part of the anti-leech?


EDIT: also, if i don't change it then i get this

[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(295:135): Invalid number of parameters at line 294
Compiling failed.

EDIT: ok last edit :P i changed
the first couple of lines to


{$DEFINE SMART8}
{$i srl/srl.simba}
{$I P07Include.Simba}
{$I SRL/srl/misc/SmartGraphics.simba}

and it works almost perfectly! :D apart from the fact that it sometimes go upstairs or walks away to the varrock palace entrance

hansson123
03-11-2013, 08:21 PM
If all anti-leaches are removed, what's this then?
[Error] C:\Simba\Includes\SRL\SRL\misc\SmartParams.Simba(7 8:8): Unknown identifier 'RSReady' at line 77
Compiling failed.

Sequence
03-11-2013, 08:43 PM
If all anti-leaches are removed, what's this then?
[Error] C:\Simba\Includes\SRL\SRL\misc\SmartParams.Simba(7 8:8): Unknown identifier 'RSReady' at line 77
Compiling failed.

Make sure you've installed SMART correctly.

If you're using smart8 change the first line from define smart to define smart8

gs3
03-12-2013, 11:32 PM
hey is it okay if i made ur script work with zombies? ... if u want the script i made work with zombies pm me ... but it is ur script. i just edit and make it work with places tht people dont go to. hope thats okay :P ... also very great work. I LOVE IT.

Sequence
03-12-2013, 11:35 PM
hey is it okay if i made ur script work with zombies? ... if u want the script i made work with zombies pm me ... but it is ur script. i just edit and make it work with places tht people dont go to. hope thats okay :P ... also very great work. I LOVE IT.

Feel free to modify the script as you want :)

zeldoan
03-12-2013, 11:57 PM
did u remove the anti leech from this script already?
(just read the new rules)
thanks in advance?

Covalent
03-13-2013, 01:03 AM
Managed to fix the anti-leech :) Was pretty easy. Thanks for the script.

killyoulol
03-13-2013, 03:07 AM
If all anti-leaches are removed, what's this then?
[Error] C:\Simba\Includes\SRL\SRL\misc\SmartParams.Simba(7 8:8): Unknown identifier 'RSReady' at line 77
Compiling failed.

You're trying to compile smart params. I think that's whats wrong...

Unholyclam
03-13-2013, 05:01 PM
"Exception in Script: Unable to find file 'P07Include.Simba' used from 'C:\Simba\Scripts\TheAutoCurser v1.32.simba'"

Am i missing a critical file to be able to use this script? Or is this some form of anti-leech that im just not getting
(Sorry, im brand new to coding. Never looked at a line of code before last night when I took the Basic-Script making course here XD)

Zet
03-13-2013, 05:52 PM
Can someone help me with the anti-leech? Can pay with 07gp or something, just hmu with your skype adress.

Samany10
03-13-2013, 06:17 PM
when i hit them with curse it says "ur foes defence has already ben lowered" or something, and i got meele gear on me... what should i do lol

lllllll0
03-13-2013, 08:20 PM
you need atleast -65 Magic bounus to have 100% splashing. Find better gear, usually vambs or boots

BigRedJapan
03-13-2013, 11:35 PM
Get this script off 4 botters in every fucking world!

codergfx
03-14-2013, 01:48 AM
Pretty good script man

juunhoad
03-14-2013, 11:50 AM
Isn't this script very botlike? It keeps clicking on the same spot on the monk.

GetHyper
03-14-2013, 06:09 PM
Yo guys if the varrock castle is crowded (most of the time it is) try this:



Good call :D, thanks.

Script seems good, not been going long - 100 or so curses but no issues so far.

codeseth42
03-14-2013, 06:57 PM
Anti-leeches are agianst SRL forum rules!!!! If you don't believe me read this -> http://villavu.com/forum/announcement.php?f=&a=48

nappyroots
03-14-2013, 08:51 PM
hey. no errors, smart loaded and script starting but the mouse just hovers around for minutes. any suggestions? thanks

nappyroots
03-14-2013, 09:02 PM
hey. no errors, smart loaded and script starting but the mouse just hovers around for minutes. any suggestions? thanks

CamelCrush
03-14-2013, 11:55 PM
Great script my friend! Very useful. :)

Sequence
03-14-2013, 11:58 PM
Anti-leeches are agianst SRL forum rules!!!! If you don't believe me read this -> http://villavu.com/forum/announcement.php?f=&a=48

There hasn't been anti-leach added since v1.2 or something like that.

Pimmyjage
03-15-2013, 12:45 PM
It missclicks nearly every second time either air bolt, enchant or other spell than curse. :s

pure rahex
03-16-2013, 04:27 PM
what is the point of adding anti-leach when clearly it says it is against the rules..

Emperia
03-16-2013, 04:33 PM
what is the point of adding anti-leach when clearly it says it is against the rules..

This script was created before they made that rule.

Username19191
03-16-2013, 08:10 PM
Nvm problem solved hadda mess with the code a bit, probably anti leech.

rara409
03-17-2013, 05:32 PM
dude wtf there is still antileech
i run without smart and it says colon expected at line 20 and begin

P1nky
03-17-2013, 08:42 PM
I'd use this, but Randoms are often popping up for me in varrock castle :/

Sequence
03-17-2013, 08:49 PM
what is the point of adding anti-leach when clearly it says it is against the rules..

dude wtf there is still antileech
i run without smart and it says colon expected at line 20 and begin

There is no anti-leach, you must be doing something wrong. If you're using smart8 be sure to change the first line of the script into define smart8.

Dylanxo
03-18-2013, 02:19 PM
It logs in and does nothing?

Ive changed the spells too... UH

krempi
03-18-2013, 07:57 PM
Edit: Ok it works on the monk of zamorak in varrock castle but not on the skeletons in varrock sewer. It just clicks on curse but then only moves around from skeleton to skeleton without clicking on any of them. Why is this?

As the monk of zamorak is almost always crowded on every world you should make this work in the sewer or add an option to curse the skeleton over the wilderness ditch in edgeville. That would be great. :)

P1nky
03-19-2013, 04:37 AM
Awesome job Mate, heres a proggie :) :


************************************************** ******
TheAutoCurser - Made by Sequence
************************************************** ******
Time running: 21m 14s
You have choosen to curse Skeletons at the Varrock sewer

meanagestudios
03-19-2013, 09:17 AM
Run it for about 2 hours all up, good script, except I died and lost 200k worth of runes, 10hp :/ I increased the randomness to 9 for each click point but it still seems very botlike, same spot everytime

taormk
03-19-2013, 12:01 PM
I don't know if this is just me but, I cast about 60 curses and then it starts rotating the compass randomly constantly doing 360's and not casting spells at all, is this an antiban feature.....?

jessee
03-21-2013, 08:41 PM
Thanks!

fluffy22
03-22-2013, 12:13 AM
Could you make this curse in the fightcaves from safespot?

chuggernaut
03-22-2013, 01:51 PM
it's not doing anything after loading smart, if i stop and run the script it just pairs with the smart client but doesn't load up the interface to log in and select the option..

lemon tree
03-22-2013, 10:26 PM
got quite a few levels with this. great script. thanks :)

Blackop2
03-23-2013, 07:56 PM
Great script :)

But if you actually cast curse on them you have a big chance of losing him.

Used it to cast 1k curses :)

jaypwns
03-23-2013, 09:59 PM
Works fine at this spot

http://i.imgur.com/CnuoRWq.png

at wildy edge

killyoulol
03-24-2013, 12:23 AM
************************************************** ******
TheAutoCurser - Made by Sequence
************************************************** ******
Time running: 3h 41m 21s
You have choosen to curse Skeletons at the Varrock sewer
(edited script so skellies in varrock= zammy mage at edge)

kicomataj
03-24-2013, 01:25 PM
works perfect thank you soooo muchhhh!

aegistitan
03-24-2013, 02:18 PM
When I run the script I get forwarded to SRL/SRL/core/mouse -- error at line 165, anybody know what this could be?

praystation
03-24-2013, 07:20 PM
Doesnt work, nothing happens when i run it...

Byttor
03-24-2013, 08:10 PM
No antileach? worked fine

Kedrex
03-25-2013, 04:37 PM
Is there a way to manually change where it clicks? Currently it clicks at exactly the same spot every time and I'd imagine that can be picked up on quite easily. :(

blye
03-25-2013, 09:05 PM
so much wrong with it. i havent used simba in ages yet even i can fix some of this stuff.

simdan
03-26-2013, 05:07 AM
I cant seem to get the scrip running o.O
I did all of the anti-leech but now i get the error:
[Error] D:\Simba\Includes\P07Include.Simba(105:10): Duplicate identifier 'P07_GETUPTEXT' at line 104
Compiling failed.

cento330
03-26-2013, 04:02 PM
sweet script man, ty

terrorist16
03-26-2013, 07:00 PM
how does one increase the mouse speed?

Anatomical
03-27-2013, 02:39 AM
so much wrong with it. i havent used simba in ages yet even i can fix some of this stuff.

Why don't you point out some of the things that is 'wrong' with it and maybe add the things that need to be fixed, rather than being a douche.

omgodly
03-27-2013, 03:06 AM
Why when I click play it loads up eoc not 07 :/
I haven't edited the script at all

flash977
03-27-2013, 05:43 AM
Got this error

C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(282:145): Invalid number of parameters at line 281
Compiling failed.

Let me know if it is a simple fix. Thanks.

Chromosomes
03-27-2013, 03:39 PM
Got this when trying to run, not sure if it's the anti-leach, nor am I sure on how to find the anti-leach.


[Error] C:\Simba\Includes\SRL/SRL/core/text.simba(791:13): Unknown identifier 'UpChars' at line 790
Compiling failed.

MotiveIntent
03-28-2013, 05:02 AM
Got this when trying to run, not sure if it's the anti-leach, nor am I sure on how to find the anti-leach.


[Error] C:\Simba\Includes\SRL/SRL/core/text.simba(791:13): Unknown identifier 'UpChars' at line 790
Compiling failed.

I just started getting this. Never got it before.

imJD
03-28-2013, 05:20 AM
Could you add anti-random?

Anatomical
03-28-2013, 07:31 AM
Got this error

C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(282:145): Invalid number of parameters at line 281
Compiling failed.

Let me know if it is a simple fix. Thanks.

I've got the same thing happening.

elm
03-28-2013, 11:05 AM
Great script, runs really well. Just a few minor issues; It occasionally clicks on other spells which is not so much of a problem with most spells as it carries on as normal but when it clicks on the enchant bolt spell the mouse just hovers- perhaps you could add in a fail safe in case this happens? It also sometimes clicks attack on the skeletons in the sewer rather than cursing them. Seems to be working flawlessly at the monk.

Carlos1624
03-28-2013, 02:09 PM
Good script for the first run, then when i bought more runes and i load it up it ONLY loads EoC, this only happens with this script. I have done everything correctly.

koo29
03-28-2013, 02:25 PM
How much is mud staff? I really need to get my mage up for teles :D

MotiveIntent
03-28-2013, 08:30 PM
It says Paired with smart and just sits there

Edit - says failed to detect clients

paulftw
03-30-2013, 03:13 PM
Hey can someone help me out? I got a message when trying to start this "Exception in Script: Unable to find file 'SRL/SRL.Simba'" I have Simba saved in my C drive. What do I need to do?
Thanks.

elm
03-30-2013, 06:20 PM
Hey can someone help me out? I got a message when trying to start this "Exception in Script: Unable to find file 'SRL/SRL.Simba'" I have Simba saved in my C drive. What do I need to do?
Thanks.

Have you set up SMART for 07? If not read through the link posted in the thread and follow it, should have no problems if you've done it correctly.

aegistitan
03-30-2013, 07:57 PM
where do i put my username and password into this script?

rj
03-30-2013, 07:59 PM
where do i put my username and password into this script?

In the form...

aegistitan
03-30-2013, 08:09 PM
In the form...

What line is that in?

rj
03-30-2013, 08:10 PM
What line is that in?

Sorry man, I can't help you from here it's extremly self explanatory

aegistitan
03-30-2013, 08:12 PM
Sorry man, I can't help you from here it's extremly self explanatory

:( anybody want to tell me what line to put username and password in? I don't know what a "form" is :(

Taavi
03-31-2013, 09:11 PM
:( anybody want to tell me what line to put username and password in? I don't know what a "form" is :(

i lol'ed this here is a form http://img824.imageshack.us/img824/9251/skrmbillede20130304kl15.png

Just start the script and this should open :D

Neverhaveb4
04-01-2013, 05:37 AM
script ran well. occasionally the bot would begin selecting another player to cast curse on, which was pretty funny to watch at times. but other than that the script will do its job at low pop hours.

Z3tt
04-01-2013, 06:05 AM
Hey guys. I believe this is my first post. Anyways, I'm what you would consider a "noob" with Simba. The script ran great before I updated the "SPS"(I believe). Well, after I updated the SPS & tried running the script, it brought me to world 36 in RS, not an Oldschool world. All I want to know is how I can fix this and get the script to put me back into an Oldschool world. Any help would be appreciated. Thanks for reading.:)

iwajad
04-01-2013, 10:54 AM
Can anyone help?

[Error] C:\Simba\Includes\P07Include.Simba(57:51): Invalid number of parameters at line 56
Compiling failed.

Anti-Leach or what?

mtdewi
04-01-2013, 12:32 PM
How to make this shit faster its unusable atm.. so slow

kurtbertt
04-04-2013, 03:40 PM
Could you add support for Fight Caves? No randoms and less chance of ban.

conjo
04-04-2013, 08:36 PM
Hey guys. I believe this is my first post. Anyways, I'm what you would consider a "noob" with Simba. The script ran great before I updated the "SPS"(I believe). Well, after I updated the SPS & tried running the script, it brought me to world 36 in RS, not an Oldschool world. All I want to know is how I can fix this and get the script to put me back into an Oldschool world. Any help would be appreciated. Thanks for reading.:)

I had the same thing can anyone help us?

pescados666
04-05-2013, 10:22 AM
Program TheAutoCurser;

{$DEFINE SMART8}
{$I SRL/SRL.Simba}
{$I P07Include.Simba}

(************************************************* *******)
(* TheAutoCurser - Made by Sequence *)
(************************************************* *******)
(* 1. Specify how many casts you want to do. *)
(* 2. Start the script, and enter login info *)
(* 3. Be sure to stand at the Monk of Zamorak *)
(* in the cage at Varrock Castle *)
(************************************************* *******)

var
x, y, MonkColor, SkeletonColor1, SkeletonColor2, Casts, I : Integer;
CastsDone, CastsPerHour, TimeGone : Integer;
DsgnForm : TForm;
Username, Password : TEdit;
StartBtn : TButton;
NPCLocSetting : Integer;
NPCCombo : TComboBox;

const
ScriptVersionNumber = '1.32';
default = 'Calibri';

procedure DTM;
begin
Casts := 3184; //Change to specify how many casts you want to do.
MonkColor := 3742030;
SkeletonColor1 := 334238;
SkeletonColor2 := 3368652;
end;

procedure LogOutPlayer;
begin
P07_TabInventoryTab(11);
Wait(RandomRange(400, 700));
P07_MouseBox(575, 362, 706, 388, mouse_left);
TerminateScript;
end;

procedure CheckFriends;
begin
P07_TabInventoryTab(9);
Wait(RandomRange(300, 500));
MMouse(650, 270, 3, 3);
Wait(RandomRange(2000, 3000));
end;

procedure CheckInventory;
begin
P07_TabInventoryTab(4);
Wait(RandomRange(200, 600));
end;

procedure ProgressReport;
begin
ClearDebug;
TimeGone := (GetTimeRunning/1000);
CastsPerHour :=(3600*(CastsDone))/((TimeGone));
begin
Writeln('***************************************** ***************');
Writeln(' TheAutoCurser - Made by Sequence ');
Writeln('***************************************** ***************');
Writeln(' Time running: ' + MsToTime((GetTimeRunning), Time_Short));
(* Writeln(' Casts: ' + IntToStr(CastsDone) + ' ');
Writeln(' Casts p/h: ' + IntToStr(CastsPerHour) + ' ');
Writeln('***************************************** ***************'); *)
end;
end;

procedure AutoUpdateScript;
var
NewFile : Integer;
OnlineVersion, NewScript, NewFileName : String;
begin
begin
Writeln('Checking TheAutoCurser VersionNumber');
OnlineVersion := GetPage('http://07scape-theautocurser.googlecode.com/svn/trunk/TheAutoCurser/AutoScriptUpdate.txt');
Writeln('Local : ' + ScriptVersionNumber + ' / Latest : ' + OnlineVersion);
if (Trim(OnlineVersion) > ScriptVersionNumber) then
begin
Writeln('New TheAutoCurser Version Available! Updating...');
NewScript := GetPage('http://07scape-theautocurser.googlecode.com/svn/trunk/TheAutoCurser/TheAutoCurser.simba');
NewFileName := AppPath + 'Scripts\TheAutoCurser v' + OnlineVersion + '.simba';
NewFile := RewriteFile(NewFileName, true);
try
WriteFileString(NewFile, NewScript);
except
begin
Writeln('Fatal error writing to ' + NewFileName + '!');
TerminateScript;
end;
end;
CloseFile(NewFile);
Writeln('New TheAutoCurser Version Downloaded Please Restart Simba!');
Writeln('TheAutoCurser version ' + OnlineVersion + ' has been added to your Simba/Scripts folder.');
TerminateScript;
end else
writeln('You already have version ' + OnlineVersion + ' of TheAutoCurser');
end;
end;

procedure StartUp;
begin
ClearDebug;
SetupP07Include;
AutoUpdateScript;
P07_AutoUpdateMe;
//P07_DeclarePlayer;
ActivateClient;
Wait(2000);
If (Not P07_LoggedIn) Then
P07_LogInPlayer;
//P07_MakeCameraAngleHigh;
//P07_MakeCompassEast;
DTM;
end;

Function AntiBan : Boolean;
begin
case random(300) of
//0: P07_HoverSkill('magic', random(5000));
1: P07_MakeCompassDegree(RandomRange(140, 170));
2: P07_MakeCompassDegree(RandomRange(190, 220));
//3: MMouse(random(650), random(350), 0, 0);
//4: CheckInventory;
//5: CheckFriends;
end;
end;

Function AntiBan2 : Boolean;
begin
case random(300) of
0: P07_HoverSkill('magic', random(5000));
1: P07_MakeCompassDegree(RandomRange(140, 170));
2: P07_MakeCompassDegree(RandomRange(190, 220));
3: MMouse(random(650), random(350), 0, 0);
4: CheckInventory;
5: CheckFriends;
end;
end;

procedure CastCurse;
begin
if P07_TabInventoryTab(7) then
begin
//P07_MouseBox(661, 258, 673, 269, mouse_left)
MMouse(667, 263, RandomRange(3, 5), RandomRange(3, 5));
Wait(RandomRange(100, 260));
ClickMouse2(mouse_left);
end;
end;

procedure CastCurseMonk;
begin
P07_MakeCompassEast;
P07_MakeCameraAngleHigh;
WriteLn('You have choosen to curse the Monk of Zamorak in Varrock Castle');
repeat
(*If (Not FindColorSpiralTolerance(x, y, MonkColor, 176, 84, 393, 320, 20)) then
LogOutPlayer
else*)
If FindColorSpiralTolerance(x, y, MonkColor, 176, 84, 393, 320, 20) then
begin
P07_MakeCompassEast;
P07_MakeCameraAngleHigh;
//P07_CastSpell(12);
CastCurse;
Mouse(x, y, random(RandomRange(3, 4)), random(RandomRange(3, 4)), mouse_left);
//MMouse(RandomRange(X - 3, X + 3), RandomRange(y - 3, y + 3), 0, 0);
//ClickMouse2(mouse_left);
ProgressReport;
AntiBan;
Inc(CastsDone);
end;
Until(I = Casts);
end;

procedure CastCurseSkeleton;
begin
repeat
P07_MakeCompassDegree(20);
P07_MakeCameraAngleLow;
WriteLn('You have choosen to curse Skeletons at the Varrock sewer');
begin
Wait(RandomRange(200, 350));
//P07_CastSpell(12);
CastCurse;
Wait(randomRange(500, 700));
if P07_FindObjCustom(x, y, ['ek'], [SkeletonColor1, SkeletonColor2], 5) then
begin
ClickMouse2(mouse_left);
Wait(RandomRange(400, 600));
Inc(CastsDone);
end
(* else
(begin
Wait(RandomRange(1034, 1503));
if (Not P07_FindObjCustom(x, y, ['Skeleton', 'Ske', 'ton', 'Skelet', 'leton'], [8885140, 9804448], 14)) then
WriteLn('NPC Not found, terminating script...');
Wait(RandomRange(100, 300));
Mouse(992, 293, random(5), random(5), true);
Wait(RandomRange(500, 1000));
LogOutPlayer;
Wait(RandomRange(500, 1000));
TerminateScript;
end; *)
end;
ProgressReport;
AntiBan2;
Inc(I);
until(I = Casts);
end;

procedure CastCurseGlobal;
begin
case NPCLocSetting of
0: CastCurseMonk;
1: CastCurseSkeleton;
end;
end;

procedure SaveSettings(Sender: TObject);
begin
DsgnForm.ModalResult := mrOk;
P07_PlayerName := Username.TEXT;
P07_PlayerPass := Password.TEXT;
NPCLocSetting := NPCCombo.ITEMINDEX;
DsgnForm.CLOSE;
end;

procedure YourClickProcedure(Sender: TObject);
begin
//ShowMessage('click');
end;

procedure InitForm;
begin
//DsgnForm
DsgnForm:=TForm.Create(nil);
with DsgnForm do
begin
Caption:='TheAutoCurser - by Sequence';
Left:=93;
Top:=163;
Width:=320;
Height:=144;
Font.Name:=default;
Font.Color:=clDefault;
Font.Size:=11;
end;

//Username
Username:=TEdit.Create(DsgnForm);
with Username do
begin
Parent:=DsgnForm;
Text:='Username';
Left:=10;
Top:=10;
Width:=300;
Height:=23;
Font.Name:=default;
Font.Color:=clDefault;
Font.Size:=11;
end;

//Password
Password:=TEdit.Create(DsgnForm);
with Password do
begin
Parent:=DsgnForm;
Text:='Password';
Left:=10;
Top:=43;
Width:=300;
Height:=23;
Font.Name:=default;
Font.Color:=clDefault;
Font.Size:=11;
Password.PASSWORDCHAR:='*';
Password.MAXLENGTH:=20;
end;

//NPCCombo\\
NPCCombo:=TComboBox.Create(DsgnForm);
with NPCCombo do
begin
Caption:='Select NPC and Location';
Parent:=DsgnForm;
Left:=10;
Top:=76;
Width:=300;
Height:=23;
Items.Add('Monk of Zamorak - Varrock Castle');
Items.Add('Skeleton - Varrock Sewer');
Text := Items[0];
OnClick:=@YourClickProcedure;
Font.Name:=default;
Font.Color:=clDefault;
Font.Size:=11;
end;

//StartBtn
StartBtn := TButton.Create(DsgnForm);
with StartBtn do
begin
Parent:=DsgnForm;
Caption:='Save Settings';
Left:=10;
Top:=109;
Width:=300;
Height:=25;
OnClick:=@SaveSettings;
Font.Color:=clDefault;
Font.Size:=11;
end;
end;

procedure SafeInitForm;
var
v: TVariantArray;
begin
setarraylength(V, 0);
ThreadSafeCall('InitForm', v);
end;


procedure ShowFormModal;
begin
DsgnForm.ShowModal;
end;


procedure SafeShowFormModal;
var
v: TVariantArray;
begin
SetArrayLength(V, 0);
ThreadSafeCall('ShowFormModal', v);
end;

Begin
SetupSRL;
SafeInitForm;
SafeShowFormModal;
StartUp;
CastCurseGlobal;
end.



This seems to work for Tz-Kek under the monk settings.

dazh
04-05-2013, 12:18 PM
Why does mine open eoc?

pescados666
04-05-2013, 12:39 PM
Why does mine open eoc?


Do you have SMART8 configured for osrs?

jabu
04-05-2013, 01:48 PM
mine opens EOC too..

pescados666
04-05-2013, 03:20 PM
mine opens EOC too..


Why does mine open eoc?

http://villavu.com/forum/showthread.php?t=97599

Jurii
04-05-2013, 04:35 PM
What do I have to change for the mouse to go faster? Like its a good script but it could be sped up by like 40%

aegistitan
04-05-2013, 10:21 PM
i lol'ed this here is a form http://img824.imageshack.us/img824/9251/skrmbillede20130304kl15.png

Just start the script and this should open :D


That form never pops up for me, is there a reason for that?

Jurii
04-06-2013, 03:45 PM
Awesome script

Ran like 5 and half hour NO PROBLEMS AT ALL!

20541

about 1050 casts an hour for 5.5 hours straight!

jabu
04-06-2013, 05:14 PM
http://villavu.com/forum/showthread.php?t=97599

i did that..

sazani7
04-06-2013, 07:24 PM
[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(282:145): Invalid number of parameters at line 281

Is this the antileach?

sazani7
04-06-2013, 07:28 PM
Opens eoc for me :S All other oldschools scripts open the oldschool idk what wrong

JadisMyDad
04-06-2013, 09:29 PM
Do you think you could add the tzhar fight caves to the script there are no randoms in there, also could we just change what monster we want to curse by just changing the colors? If you can't add fight cave monsters

very angry
04-06-2013, 11:40 PM
The script starts up, but the form don't pop up, and bot does nothing.. Help?

kooga
04-07-2013, 12:44 AM
fantastic script, got me to almost 55 mage :)

alpines50
04-07-2013, 03:46 AM
************************************************** ******
TheAutoCurser - Made by Sequence
************************************************** ******
Time running: 11h 06m 39s
Casts: 12388
Casts p/h: 1114
************************************************** ******

runs great. got 67 mage so far :)

pescados666
04-07-2013, 03:59 AM
Do you think you could add the tzhar fight caves to the script there are no randoms in there, also could we just change what monster we want to curse by just changing the colors? If you can't add fight cave monsters

Program TheAutoCurser;

{$DEFINE SMART8}
{$I SRL/SRL.Simba}
{$I P07Include.Simba}

(************************************************* *******)
(* TheAutoCurser - Made by Sequence *)
(************************************************* *******)
(* 1. Specify how many casts you want to do. *)
(* 2. Start the script, and enter login info *)
(* 3. Be sure to stand at the Monk of Zamorak *)
(* in the cage at Varrock Castle *)
(************************************************* *******)

var
x, y, MonkColor, SkeletonColor1, SkeletonColor2, Casts, I : Integer;
CastsDone, CastsPerHour, TimeGone : Integer;
DsgnForm : TForm;
Username, Password : TEdit;
StartBtn : TButton;
NPCLocSetting : Integer;
NPCCombo : TComboBox;

const
ScriptVersionNumber = '1.32';
default = 'Calibri';

procedure DTM;
begin
Casts := 3184; //Change to specify how many casts you want to do.
MonkColor := 3742030;
SkeletonColor1 := 334238;
SkeletonColor2 := 3368652;
end;

procedure LogOutPlayer;
begin
P07_TabInventoryTab(11);
Wait(RandomRange(400, 700));
P07_MouseBox(575, 362, 706, 388, mouse_left);
TerminateScript;
end;

procedure CheckFriends;
begin
P07_TabInventoryTab(9);
Wait(RandomRange(300, 500));
MMouse(650, 270, 3, 3);
Wait(RandomRange(2000, 3000));
end;

procedure CheckInventory;
begin
P07_TabInventoryTab(4);
Wait(RandomRange(200, 600));
end;

procedure ProgressReport;
begin
ClearDebug;
TimeGone := (GetTimeRunning/1000);
CastsPerHour :=(3600*(CastsDone))/((TimeGone));
begin
Writeln('***************************************** ***************');
Writeln(' TheAutoCurser - Made by Sequence ');
Writeln('***************************************** ***************');
Writeln(' Time running: ' + MsToTime((GetTimeRunning), Time_Short));
(* Writeln(' Casts: ' + IntToStr(CastsDone) + ' ');
Writeln(' Casts p/h: ' + IntToStr(CastsPerHour) + ' ');
Writeln('***************************************** ***************'); *)
end;
end;

procedure AutoUpdateScript;
var
NewFile : Integer;
OnlineVersion, NewScript, NewFileName : String;
begin
begin
Writeln('Checking TheAutoCurser VersionNumber');
OnlineVersion := GetPage('http://07scape-theautocurser.googlecode.com/svn/trunk/TheAutoCurser/AutoScriptUpdate.txt');
Writeln('Local : ' + ScriptVersionNumber + ' / Latest : ' + OnlineVersion);
if (Trim(OnlineVersion) > ScriptVersionNumber) then
begin
Writeln('New TheAutoCurser Version Available! Updating...');
NewScript := GetPage('http://07scape-theautocurser.googlecode.com/svn/trunk/TheAutoCurser/TheAutoCurser.simba');
NewFileName := AppPath + 'Scripts\TheAutoCurser v' + OnlineVersion + '.simba';
NewFile := RewriteFile(NewFileName, true);
try
WriteFileString(NewFile, NewScript);
except
begin
Writeln('Fatal error writing to ' + NewFileName + '!');
TerminateScript;
end;
end;
CloseFile(NewFile);
Writeln('New TheAutoCurser Version Downloaded Please Restart Simba!');
Writeln('TheAutoCurser version ' + OnlineVersion + ' has been added to your Simba/Scripts folder.');
TerminateScript;
end else
writeln('You already have version ' + OnlineVersion + ' of TheAutoCurser');
end;
end;

procedure StartUp;
begin
ClearDebug;
SetupP07Include;
AutoUpdateScript;
P07_AutoUpdateMe;
//P07_DeclarePlayer;
ActivateClient;
Wait(2000);
If (Not P07_LoggedIn) Then
P07_LogInPlayer;
//P07_MakeCameraAngleHigh;
//P07_MakeCompassEast;
DTM;
end;

Function AntiBan : Boolean;
begin
case random(300) of
//0: P07_HoverSkill('magic', random(5000));
1: P07_MakeCompassDegree(RandomRange(140, 170));
2: P07_MakeCompassDegree(RandomRange(190, 220));
//3: MMouse(random(650), random(350), 0, 0);
//4: CheckInventory;
//5: CheckFriends;
end;
end;

Function AntiBan2 : Boolean;
begin
case random(300) of
0: P07_HoverSkill('magic', random(5000));
1: P07_MakeCompassDegree(RandomRange(140, 170));
2: P07_MakeCompassDegree(RandomRange(190, 220));
3: MMouse(random(650), random(350), 0, 0);
4: CheckInventory;
5: CheckFriends;
end;
end;

procedure CastCurse;
begin
if P07_TabInventoryTab(7) then
begin
//P07_MouseBox(661, 258, 673, 269, mouse_left)
MMouse(667, 263, RandomRange(3, 5), RandomRange(3, 5));
Wait(RandomRange(100, 260));
ClickMouse2(mouse_left);
end;
end;

procedure CastCurseMonk;
begin
P07_MakeCompassEast;
P07_MakeCameraAngleHigh;
WriteLn('You have choosen to curse the Monk of Zamorak in Varrock Castle');
repeat
(*If (Not FindColorSpiralTolerance(x, y, MonkColor, 176, 84, 393, 320, 20)) then
LogOutPlayer
else*)
If FindColorSpiralTolerance(x, y, MonkColor, 176, 84, 393, 320, 20) then
begin
P07_MakeCompassEast;
P07_MakeCameraAngleHigh;
//P07_CastSpell(12);
CastCurse;
Mouse(x, y, random(RandomRange(3, 4)), random(RandomRange(3, 4)), mouse_left);
//MMouse(RandomRange(X - 3, X + 3), RandomRange(y - 3, y + 3), 0, 0);
//ClickMouse2(mouse_left);
ProgressReport;
AntiBan;
Inc(CastsDone);
end;
Until(I = Casts);
end;

procedure CastCurseSkeleton;
begin
repeat
P07_MakeCompassDegree(20);
P07_MakeCameraAngleLow;
WriteLn('You have choosen to curse Skeletons at the Varrock sewer');
begin
Wait(RandomRange(200, 350));
//P07_CastSpell(12);
CastCurse;
Wait(randomRange(500, 700));
if P07_FindObjCustom(x, y, ['ek'], [SkeletonColor1, SkeletonColor2], 5) then
begin
ClickMouse2(mouse_left);
Wait(RandomRange(400, 600));
Inc(CastsDone);
end
(* else
(begin
Wait(RandomRange(1034, 1503));
if (Not P07_FindObjCustom(x, y, ['Skeleton', 'Ske', 'ton', 'Skelet', 'leton'], [8885140, 9804448], 14)) then
WriteLn('NPC Not found, terminating script...');
Wait(RandomRange(100, 300));
Mouse(992, 293, random(5), random(5), true);
Wait(RandomRange(500, 1000));
LogOutPlayer;
Wait(RandomRange(500, 1000));
TerminateScript;
end; *)
end;
ProgressReport;
AntiBan2;
Inc(I);
until(I = Casts);
end;

procedure CastCurseGlobal;
begin
case NPCLocSetting of
0: CastCurseMonk;
1: CastCurseSkeleton;
end;
end;

procedure SaveSettings(Sender: TObject);
begin
DsgnForm.ModalResult := mrOk;
P07_PlayerName := Username.TEXT;
P07_PlayerPass := Password.TEXT;
NPCLocSetting := NPCCombo.ITEMINDEX;
DsgnForm.CLOSE;
end;

procedure YourClickProcedure(Sender: TObject);
begin
//ShowMessage('click');
end;

procedure InitForm;
begin
//DsgnForm
DsgnForm:=TForm.Create(nil);
with DsgnForm do
begin
Caption:='TheAutoCurser - by Sequence';
Left:=93;
Top:=163;
Width:=320;
Height:=144;
Font.Name:=default;
Font.Color:=clDefault;
Font.Size:=11;
end;

//Username
Username:=TEdit.Create(DsgnForm);
with Username do
begin
Parent:=DsgnForm;
Text:='Username';
Left:=10;
Top:=10;
Width:=300;
Height:=23;
Font.Name:=default;
Font.Color:=clDefault;
Font.Size:=11;
end;

//Password
Password:=TEdit.Create(DsgnForm);
with Password do
begin
Parent:=DsgnForm;
Text:='Password';
Left:=10;
Top:=43;
Width:=300;
Height:=23;
Font.Name:=default;
Font.Color:=clDefault;
Font.Size:=11;
Password.PASSWORDCHAR:='*';
Password.MAXLENGTH:=20;
end;

//NPCCombo\\
NPCCombo:=TComboBox.Create(DsgnForm);
with NPCCombo do
begin
Caption:='Select NPC and Location';
Parent:=DsgnForm;
Left:=10;
Top:=76;
Width:=300;
Height:=23;
Items.Add('Monk of Zamorak - Varrock Castle');
Items.Add('Skeleton - Varrock Sewer');
Text := Items[0];
OnClick:=@YourClickProcedure;
Font.Name:=default;
Font.Color:=clDefault;
Font.Size:=11;
end;

//StartBtn
StartBtn := TButton.Create(DsgnForm);
with StartBtn do
begin
Parent:=DsgnForm;
Caption:='Save Settings';
Left:=10;
Top:=109;
Width:=300;
Height:=25;
OnClick:=@SaveSettings;
Font.Color:=clDefault;
Font.Size:=11;
end;
end;

procedure SafeInitForm;
var
v: TVariantArray;
begin
setarraylength(V, 0);
ThreadSafeCall('InitForm', v);
end;


procedure ShowFormModal;
begin
DsgnForm.ShowModal;
end;


procedure SafeShowFormModal;
var
v: TVariantArray;
begin
SetArrayLength(V, 0);
ThreadSafeCall('ShowFormModal', v);
end;

Begin
SetupSRL;
SafeInitForm;
SafeShowFormModal;
StartUp;
CastCurseGlobal;
end.



This seems to work for Tz-Kek under the monk settings.

wino
04-07-2013, 06:34 AM
Do this on Tz Kek in Fight Caves.
It's working flawlessly, with NO randoms.
Literally perfect.

mistuhmack
04-08-2013, 04:30 AM
I need a bit of help. Once I run it, put in username/pass, and hit save settings, the thing that you click okay for the firewall comes up. I click it once and it pops right back up, it does this like 3 times then simba minimizes and nothing happens. Any suggestions?

11wnash
04-09-2013, 05:54 PM
mine was working yesterday just fine and I try to run it today and it opens eoc. I'm not sure what went wrong

DannyRS
04-09-2013, 06:01 PM
mine was working yesterday just fine and I try to run it today and it opens eoc. I'm not sure what went wrong

Your SRL updated and replaced the SmartParams and Login simba files with the EoC ones, you have to re-edit them or look into OSR, which wont autoupdate atm

I Style I
04-09-2013, 11:48 PM
Good script but it always clicks in the same place... :S

Darcy_Oner
04-10-2013, 03:59 AM
Mine doesnt start up.

Bearsz
04-11-2013, 01:10 PM
When I type in my inlog and password the script will stop O.o?

Edit: Never minder, saw that I were using the 1.31 instead of 1.32

adoniss23
04-11-2013, 09:54 PM
The first curse it searchs for color, than it click last place that clicked before.
So when it moves the camera, missclicks the curse and clicks the staircase!
Goes infront the staircase or climbs them. :/ doesnt work very well for me :/ where is the problem?

Jurii
04-16-2013, 12:26 PM
Can anyone help me, what do I change in the script so that it clicks the "stun" spell instead of "curse" spell? The level 80 variant of the spell that uses soul runes.

djmargus
04-16-2013, 08:33 PM
[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(282:145): Invalid number of parameters at line 281
Compiling failed.

thorium
04-20-2013, 08:37 AM
script works perfectly fine just that after 5 mins of starting it will misclick and walk up the stairs is there a way to fix it?

kamieldoens
04-20-2013, 04:00 PM
I added a xp earned and xp/hour , very simple.

Zorag
04-20-2013, 06:10 PM
[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(295:135): Invalid number of parameters at line 294
Compiling failed.

Can someone help me please? I'm a bit new here

EDIT: Nevermind I just put in an 8 after DEFINE SMART, but the script just clicks on the curse and goes crazy with the mouse.

pescados666
04-20-2013, 07:18 PM
I plan to use this in fight caves to get 94 mage soon as I finish up 99 fletching today.

cleaned4bank
04-20-2013, 10:06 PM
I have the P07 include yet it is opening EOC...

Stevenbest4
04-20-2013, 11:56 PM
Invalid number of parameters at line 281
Please help Please@!!!!

Origin1234
04-21-2013, 09:53 PM
Sequence, you should make it so it so the script remembers the spot the user was at as the script started and automatically walks back to that spot if it misclicks/moves. This is essential.

makos101
04-23-2013, 05:53 AM
Im getting this error

[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(295:135): Invalid number of parameters at line 294
Compiling failed.

pescados666
04-23-2013, 05:58 AM
10k curses done today in caves with this script :D
only 256k to go! Since I'm doing caves, I cannot really get around the 6hr logout without having to code up something to get kek back to safespot. Once the script does that, however, I don't think there would be a way to improve upon it :P

wolffang92
04-23-2013, 11:33 PM
10k curses done today in caves with this script :D
only 256k to go! Since I'm doing caves, I cannot really get around the 6hr logout without having to code up something to get kek back to safespot. Once the script does that, however, I don't think there would be a way to improve upon it :P

Mind sharing how you got it to run that long in caves? Mine always missclicks the ket and messes up. How about a color code? :confused:

pescados666
04-24-2013, 02:43 AM
Mind sharing how you got it to run that long in caves? Mine always missclicks the ket and messes up. How about a color code? :confused:

I used the same code I pasted a few pages back. You can use the color picker to play around with the color and edit the part the references the monk color in the script. Remember to not include the username or pass if in the caves because you don't want it to try to log back in.



************************************************** ******
TheAutoCurser - Made by Sequence
************************************************** ******
Time running: 30h 43m 25s

and none of that was time spent on log in screen or anything other than cursing. ty 55-73 mage in 1 day

IMayoboeiI
04-25-2013, 02:29 PM
[Hint] C:\Simba\Scripts\TheAutoCurser v1.32.simba(124:10): Variable 'Result' never used at line 123
[Hint] C:\Simba\Scripts\TheAutoCurser v1.32.simba(136:10): Variable 'Result' never used at line 135
Compiled successfully in 811 ms.
SRL Compiled in 0 msec
** Failed To Grab Smart Parameters **
** Please check your internet connection/firewall **
Successfully executed.

I get this error and SMART should not be a problem as I only get the error from this script. Other scripts work just fine for me. Anyone know how to fix? By the way, I'm using SMART8 and could that be the source of the problem?

freddyadu02
04-27-2013, 02:28 PM
Mine opens up EOC, all other scripts open up in 07.. really confused about this.

Running other scripts in 07, I am using Smart8...

Really confused, help please!

Doorz
04-27-2013, 02:53 PM
Is this still working effectively?

Z3tt
04-27-2013, 02:58 PM
Same for me.

pescados666
04-27-2013, 08:14 PM
************************************************** ******
TheAutoCurser - Made by Sequence
************************************************** ******
Time running: 53h 17m 48s
Successfully executed.

yay 84 mage, now just 170k curses til 94! This + auburyrunebuyer and the increase in value of mudstaff means I'll profit about 1m from 94 mage.

Doorz
04-27-2013, 08:30 PM
************************************************** ******
TheAutoCurser - Made by Sequence
************************************************** ******
Time running: 53h 17m 48s
Successfully executed.

yay 84 mage, now just 170k curses til 94! This + auburyrunebuyer and the increase in value of mudstaff means I'll profit about 1m from 94 mage.


Is that in fight caves or?

pescados666
04-27-2013, 08:51 PM
Is that in fight caves or?

Yup, on kek.

Doorz
04-27-2013, 08:58 PM
Yup, on kek.

Ah I'm gonna attempt to get in a bit of them @ caves pretty soon. Hopefully things go as smooth for me lol.

pescados666
04-27-2013, 09:05 PM
Ah I'm gonna attempt to get in a bit of them @ caves pretty soon. Hopefully things go as smooth for me lol.

Good luck, here's how I position myself. I didn't have any problems with moving from safespot or with standing outside of cave. http://jesusfuck.me/di/PJ3E/Capture867.png

NKN
04-27-2013, 10:43 PM
Good luck, here's how I position myself. I didn't have any problems with moving from safespot or with standing outside of cave. http://jesusfuck.me/di/PJ3E/Capture867.png

That website with the picture man.. do you own it?
/offtopic

pescados666
04-28-2013, 05:35 AM
That website with the picture man.. do you own it?
/offtopic

yes, yes I do O:

Hamish
04-28-2013, 12:28 PM
Really needs randoms support

alonelygopher
04-28-2013, 04:12 PM
Am i the only one who does not know how to run this script? If anyone could help that would be great :)

pescados666
04-30-2013, 04:42 AM
************************************************** ******
TheAutoCurser - Made by Sequence
************************************************** ******
Time running: 11h 53m 39s
Casts: 11920
Xp Gained: 345651
Casts per hour: 1002
************************************************** ******

I tweaked the proggy a bit :)


procedure ProgressReport;
begin
ClearDebug;
TimeGone := (GetTimeRunning/1000);
CastsHour := (3600 * (CastsDone)) / ((TimeGone));
begin
Writeln('***************************************** ***************');
Writeln(' TheAutoCurser - Made by Sequence ');
Writeln('***************************************** ***************');
Writeln(' Time running: ' + MsToTime((GetTimeRunning), Time_Short));
Writeln(' Casts: ' + IntToStr(CastsDone + 1) + ' ');
Writeln(' Xp Gained: ' + IntToStr(CastsDone * 29) + ' ');
Writeln(' Casts per hour: ' + IntToStr(CastsHour) + ' ');
Writeln('***************************************** ***************');
end;
end;

************************************************** ******
TheAutoCurser - Made by Sequence
************************************************** ******
Time running: 24h 16m 55s
Casts: 18641
Xp Gained: 540560
Casts per hour: 767
************************************************** ******
internet connection died during storm and it sat at login screen for a while with timer running, so casts per hour is a bit lower than normal.

************************************************** ******
TheAutoCurser
************************************************** ******
Time running: 43h 50m 31s
Casts: 33436
Xp Gained: 969615
Casts per hour: 762
************************************************** ******

RobinurHood
05-01-2013, 04:27 PM
Good script does it have anti randoms?