Results 1 to 9 of 9

Thread: Build RRW SO it won't start with flag, Help?

  1. #1
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Build RRW SO it won't start with flag, Help?

    If you just click and the flags pops up and you want to use flag it will w8 till flag gone, the point is i am walking around in the lumby castle and so once in a while the RRW Hangs even when i don't use flag it waits
    so could some1 rebuild(change) it so it won't wait when it starts, flag gone yes or no. Could you?
    I tried it myself sometimes to but i am nubby

    i would really apreciate that!!!
    Thanks!
    Hermpie
    ~Hermen

  2. #2
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Since When No One Reacts to my threads?
    Btw, don't try to say now, 'Since you double post' -.-

    Hermpie
    ~Hermen

  3. #3
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    RRW already has Flag built in it. Also use FFlag(0).
    Ill have a look later.

  4. #4
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by NaumanAkhlaQ View Post
    RRW already has Flag built in it. Also use FFlag(0).
    Ill have a look later.
    Thanks that you took some time to read it but, read it again, i want flag out of it at the start

    Hermpie
    ~Hermen

  5. #5
    Join Date
    Apr 2007
    Posts
    994
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    The Function of RadialRoadWalk

    SCAR Code:
    function RadialRoadWalk(TheColor: Integer; StartRadial, EndRadial: Integer; Radius: Integer; Xmod, Ymod: Integer): Boolean;
    var
      tpa: TPointArray;
      i: Integer;
    begin
      Result := False;
      if (not LoggedIn) then Exit;
      if (RoadColorChecker) then
        if (DebugRadialRoad) then
          WriteLn(' THROUGH RADIALROADWALK=  ---> ' + IntToStr(RoadColor));
      if RadialWalkEx(tpa, MMCX, MMCY, TheColor, 0, StartRadial, EndRadial, Radius) then
        for i := 0 to High(tpa) do
          if MFNF(tpa[i].x, tpa[i].y, Xmod, Ymod) then
          begin
            CountFlag(10);
            Result := True;
            Break;
          end;
    end;



    change Countflag(10);

    If you dont know how to, you dont deserve to be here

    Oh, and jsut copy the hole function into your script or something.
    [QUOTE]<GoF`> oh no its Raymooond
    <Raymooond> Heya
    <GoF`> is it ray or some other ray?
    <LeeLokHin> No idea
    <LeeLokHin> Raymond, what's the game you like the most?
    <Raymooond> Runescape
    <-- LeeLokHin has kicked Raymooond from #srl (Faker.)[/QUOTE]

  6. #6
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Well Mr.Leelokhin, mind sharing your wisdom since you know it so well?

    Hermpie, you really should post the piece of code the problem is in.

    I doubt the problem is in RadialRoadWalk, because only if RadialWalkEx manages to find new "good" points on the minimap, then it goes through the "good" points, and only if it manages to MFNF, - click on a point creating a flag, it will wait until it is gone.

    So, until something else sounds better, I think you have too small x and y mods.


    Oh, and jsut copy the hole function into your script or something.
    Why would he copy RadialRoadWalk into his script since it is in it already through SRL including? You shouldn't even be joking about anyone deserve to be and where.

  7. #7
    Join Date
    Jun 2007
    Location
    Wednesday
    Posts
    2,446
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Zomg, lucky n3ss3s has 777 posts!
    Anyway, he changed the function to not include Flag; (I think) so would need to be copied into his script to overwrite the SRL one or paste it over the SRL one and made a joke saying "if you don't know how to copy, you don't deserve to be here", as emphasized by the
    By reading this signature you agree that mixster is superior to you in each and every way except the bad ways but including the really bad ways.

  8. #8
    Join Date
    Oct 2006
    Location
    ithurtsithurtsithurtsithurts
    Posts
    2,930
    Mentioned
    7 Post(s)
    Quoted
    135 Post(s)

    Default

    Quote Originally Posted by mixster View Post
    Zomg, lucky n3ss3s has 777 posts!
    Anyway, he changed the function to not include Flag; (I think) so would need to be copied into his script to overwrite the SRL one or paste it over the SRL one and made a joke saying "if you don't know how to copy, you don't deserve to be here", as emphasized by the
    Nope. RadialRoadWalk doesn't actually include Flag. He changed nothing about it.

  9. #9
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by leelokhin View Post
    The Function of RadialRoadWalk

    SCAR Code:
    function RadialRoadWalk(TheColor: Integer; StartRadial, EndRadial: Integer; Radius: Integer; Xmod, Ymod: Integer): Boolean;
    var
      tpa: TPointArray;
      i: Integer;
    begin
      Result := False;
      if (not LoggedIn) then Exit;
      if (RoadColorChecker) then
        if (DebugRadialRoad) then
          WriteLn(' THROUGH RADIALROADWALK=  ---> ' + IntToStr(RoadColor));
      if RadialWalkEx(tpa, MMCX, MMCY, TheColor, 0, StartRadial, EndRadial, Radius) then
        for i := 0 to High(tpa) do
          if MFNF(tpa[i].x, tpa[i].y, Xmod, Ymod) then
          begin
            CountFlag(10);
            Result := True;
            Break;
          end;
    end;



    change Countflag(10);

    If you dont know how to, you dont deserve to be here

    Oh, and jsut copy the hole function into your script or something.
    Quote Originally Posted by n3ss3s View Post
    Well Mr.Leelokhin, mind sharing your wisdom since you know it so well?

    Hermpie, you really should post the piece of code the problem is in.

    I doubt the problem is in RadialRoadWalk, because only if RadialWalkEx manages to find new "good" points on the minimap, then it goes through the "good" points, and only if it manages to MFNF, - click on a point creating a flag, it will wait until it is gone.

    So, until something else sounds better, I think you have too small x and y mods.




    Why would he copy RadialRoadWalk into his script since it is in it already through SRL including? You shouldn't even be joking about anyone deserve to be and where.
    Quote Originally Posted by mixster View Post
    Zomg, lucky n3ss3s has 777 posts!
    Anyway, he changed the function to not include Flag; (I think) so would need to be copied into his script to overwrite the SRL one or paste it over the SRL one and made a joke saying "if you don't know how to copy, you don't deserve to be here", as emphasized by the
    Quote Originally Posted by senrath View Post
    Nope. RadialRoadWalk doesn't actually include Flag. He changed nothing about it.
    HAHA only n3ss3s is right like always, i already took countflag; out of it but it is in the radialwalkex procedure

    thanks for help all

    Edit:
    Still Got No Idea to edit radialwalkex
    ~Hermen

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. How to build a small boat?
    By kingarabian in forum Discussions & Debates
    Replies: 8
    Last Post: 03-07-2008, 10:09 PM
  2. My simple autologger (Re-Build)
    By Floor66 in forum First Scripts
    Replies: 14
    Last Post: 10-29-2007, 08:10 AM
  3. I build computers
    By lolpie in forum Discussions & Debates
    Replies: 15
    Last Post: 10-17-2007, 02:24 AM
  4. Looking to build a pc... this stuff any good?
    By ownage4j00 in forum News and General
    Replies: 6
    Last Post: 04-05-2007, 12:09 AM
  5. Replies: 6
    Last Post: 06-03-2006, 09:32 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
  •