Hey, i thought with the easily exploitable nature of runespan, it would be a nice time to learn some more scripting
Right now i have this(I'm a noob! i admit this wholeheartedly :P) It's a really simple script that just clicks on a law essling every 10 or so seconds (this is just the main procedure, i do have antiban and stuff)
Procedure Findlawessling;
var
x, y: Integer;
begin
repeat
if FindObj(x, y, 'Law', 14394158, 5)then
mouse(x, y, 5, 5, true);
Antiban;
wait(5000+random(5000));
Until(false);
end;
I don't really know what i'm doing and i'm sure both those "untils" are not gonna work xD
Obviously, this is totally shit and will probably get you banned in about 5 minutes, regardless, it /works/ as even with my rubbish attempt i still have 124k xp upwards after a few hours My question is:
Is there a simple way to detect when they spawn and click on them right away, rather then just automatically clicking it's color every set amount of seconds regardless of if you're already using it, or it hasn't even spawned yet and having to wait another 10-odd seconds to click again
Should i be aiming for:
Procedure Findlaw;
var
x, y: Integer;
begin
repeat
if FindObj(x, y, 'Law', 14394158, 5)then
mouse(x, y, 5, 5, true);
Antiban;
Until not isuptext('law');
end;
begin
SetupSRL;
ActivateClient;
declareplayers;
loginplayer;
repeat
Findlaw;
until(false);
end.
(seems to work but clicks like crazy haha xD)
I'd google it but i honestly have no idea what i should be looking for :P



Reply With Quote








