Help With My Fire Rune Crafter Please!
First off I would like to ask someone who is good at scripting if they can give me their MSN or AIM name because I have more to it than this. Here is my main question though:
Well, I am using the SRL include and I am attempting to make a very good Fire Rune Crafter. I have the walking procedure down to get to the altar, but I have a slight problem. EnterRCAlter is not working for me. I have no idea why. I have a tiara and all it's just not working for me. Here is the function:
SCAR Code:
{*******************************************************************************
function EnterRCAlter: Boolean;
By: Dankness
Description: Will Locate and Enter Rune Crafting Alters by looking for
the pulsating purple light, Must wear a Tiera to work
*******************************************************************************}
function EnterRCAlter: Boolean;
var cx, cy, c : Integer;
begin
repeat
if(not(LoggedIn))then
Exit;
repeat
C:=C+1;
if(not(LoggedIn))then
Exit;
Wait(25);
if(C>100)then
begin
Result := False;
Exit;
end;
until(FindMsColorTol(cx,cy,6243878,20));
MMouse(cx,cy, 5,5);
Wait(150+Random(350));
until(PopUp ('Enter'));
Result:=True;
end;
CAN SOMEONE EDIT THIS FOR ME SO IT WORKS OR CAN SOMEONE MAYBE WRITE A NEW FUNCTION??
PS - Also, can someone else make or find me a procedure so that it will click the talisman then click the altar because I am making the crafter so that you can use weather a tiara or a talisman.
Thanks for your time!
- Da Der Der