Results 1 to 11 of 11

Thread: Help With My Fire Rune Crafter Please!

  1. #1
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default 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
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  2. #2
    Join Date
    Nov 2006
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    When ever you are wearing the tiara and have mosue over the ruins it displays a different message right? It shows enter but you need it to click on use. So changing Enter to use should do it.

  3. #3
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Um no it shouldn't. When you are wearing a tiara and you hover the mouse over the runes it says Enter. When you are using a talisman and you hover the mouse over the runes after you click the talisman in your inventory, then it says use.
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  4. #4
    Join Date
    Nov 2006
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Da Der Der View Post
    Um no it shouldn't. When you are wearing a tiara and you hover the mouse over the runes it says Enter. When you are using a talisman and you hover the mouse over the runes after you click the talisman in your inventory, then it says use.
    That's what i was syaing.


    Once you clicked on the tally and it is over the ruins if you change Enter to Use it should click it.

  5. #5
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok, I know that part but I am making it so that I can use a talisman or a tiara. If I use a tiara, then that same procedure with 'Use' in the PopUp part, it doesn't work.
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  6. #6
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I need some help, please someone.
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  7. #7
    Join Date
    Nov 2006
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    until(PopUp ('Enter')) or (PopUp ('Use'));

    that line should work

  8. #8
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I don't even know if you know what I'm talking about dude. The whole point here is the procedure EnterRCAlter; WILL NOT WORK FOR ME. Not that the procedure is written wrong, but the script will not work. It WON'T click on the alter. It sometimes hovers over it but it WILL NOT CLICK.
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  9. #9
    Join Date
    Nov 2006
    Posts
    235
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ive been working on the same script, if you would like i can show you it after i finish. I get in there fine, only problem is getting back out.. because of the portal... which i believe has been fixed. So it wont be long.

  10. #10
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    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;

    that doesnt even have in it something that clicks the mouse.
    put this instead of EnterRCAlter...
    SCAR Code:
    if (EnterRCAlter=true) then
    getmousepos(x,y)
    Mouse(x,y,2,2,true)
    i havent tried it in rs but see if it works. pm me if it doesnt work.

    edit: u might have to put it after EnterRCAlter... try both ways tell me if it works.

  11. #11
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    popup contains the mouse clicking

    also you dont have to do
    <insert boolean or function that returns boolean here> = true
    just if (enterrcalter) then
    by the same token you don't have to do = false, just wrap not() around it
    doesnt hurt though, im just saying...

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Fire rune seller! Sells Fire runes at Tzzhar!
    By Camaro' in forum RS3 Outdated / Broken Scripts
    Replies: 12
    Last Post: 03-03-2009, 12:19 PM
  2. Fire rune crafter.....
    By bradfootball33 in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 05-09-2008, 07:24 PM
  3. Help with fire crafter
    By !bezo! in forum OSR Help
    Replies: 2
    Last Post: 06-24-2007, 04:23 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •