Results 1 to 16 of 16

Thread: Taking function request

  1. #1
    Join Date
    Jul 2007
    Posts
    1,431
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Taking function request

    Title says all...
    Describe exactly as you can.
    Must be able to do in f2p.

    Cheers

    Edit: Don't accept such as walking...simple clicking...nothing what's turning to full script.

    Function you request, should give me lot of math and headache.
    [CENTER][SIZE="4"]Inactive[/SIZE]I forgot my password[/CENTER]

  2. #2
    Join Date
    May 2007
    Location
    in a pineapple under the sea
    Posts
    1,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    gas finder
    [SIZE="4"][CENTER][URL="http://www.youtube.com/watch?v=5YsGJz3j4os"]LOL u mad bro?[/URL][/CENTER][/SIZE]

  3. #3
    Join Date
    May 2007
    Location
    NSW, Australia
    Posts
    2,823
    Mentioned
    3 Post(s)
    Quoted
    25 Post(s)

    Default

    Quote Originally Posted by Timothegreat View Post
    gas finder
    I need thst for personal use, cuz sometimes i let one off, but sometimes i think its dinner. (mums a bad chief)

  4. #4
    Join Date
    Jul 2007
    Posts
    1,431
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Timothegreat View Post
    gas finder
    Umm...Why don't you use SRL's?

    Anyways if you get me some pictures about gas then...I'll do it
    [CENTER][SIZE="4"]Inactive[/SIZE]I forgot my password[/CENTER]

  5. #5
    Join Date
    Aug 2007
    Location
    Hawaii
    Posts
    3,880
    Mentioned
    7 Post(s)
    Quoted
    152 Post(s)

    Default

    negaal i would appreciate it if you make a function for firemaking. So when it gets caught in a place it cant firemake it will then move away. ("You cant light a fire here").
    Faith is an oasis in the heart which will never be reached by the caravan of thinking.

  6. #6
    Join Date
    May 2007
    Location
    NSW, Australia
    Posts
    2,823
    Mentioned
    3 Post(s)
    Quoted
    25 Post(s)

  7. #7
    Join Date
    Feb 2007
    Location
    Het ademt zwaar en moedeloos vannacht.
    Posts
    7,211
    Mentioned
    26 Post(s)
    Quoted
    72 Post(s)

    Default

    Something that converts a 2d int array to a normal one.
    I made a new script, check it out!.

  8. #8
    Join Date
    Jul 2007
    Posts
    1,431
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Easy, simple, effective and working...didn't failed on most commonly failed chicken suit.

    SCAR Code:
    function GasIn(X, Y : integer) : Boolean;
    var
      CTS, i, a : integer;
      PCount : TIntegerArray;
    begin
      SetLength(PCount, 2);
      CTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorspeed2Modifiers(0.08, 0.25);
      if FindColorTolerance(a, a, 7835543, X - 25, Y - 25, X + 25, Y + 25, 15) then
      begin
        for i:=0 to 1 do
        begin
          PCount[i]:= CountColorTolerance(7835543, X - 25, Y - 25, X + 25, Y + 25, 15);
          if i = 0 then wait(250);
        end;
        if PCount[0] <> PCount[1] then
        begin
          Result := True;
          Writeln('Gas found, Pixelcount change: '+FloatToStr((Abs(PCount[0] - PCount[1]) * PCount[0]) / 100)+'%');
        end;
      end;
      SetColorspeed2Modifiers(0.2, 0.2);
      ColorToleranceSpeed(CTS);
    end;

    Edit: Finds aproch 100 pixels per gas
    [CENTER][SIZE="4"]Inactive[/SIZE]I forgot my password[/CENTER]

  9. #9
    Join Date
    Jul 2007
    Posts
    1,431
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Markus View Post
    Something that converts a 2d int array to a normal one.
    SCAR Code:
    Function TIAAtoTIA(dd :Array of TIntegerArray) : TIntegerArray;
    var
      New : TIntegerArray;
      L, K, i, j, g, d, add, ddl : integer;
    begin
      g := length(dd);
      d := high(dd)
      for g := 0 to d do
      ddl := ddl + Length(dd[g]);
      SetLength(New, ddl)
      L := High(dd);
      For i := 0 to L do
      begin
        K := High(dd[i])
        For j := 0 to K do
        begin
          New[add] := dd[i][j];
          Inc(Add);
        end;
      end;
      Result := New;
    end;

    Quote Originally Posted by kingarabian View Post
    negaal i would appreciate it if you make a function for firemaking. So when it gets caught in a place it cant firemake it will then move away. ("You cant light a fire here").
    Well, where are you burning the logs? town?, on grass or road?...
    [CENTER][SIZE="4"]Inactive[/SIZE]I forgot my password[/CENTER]

  10. #10
    Join Date
    Jun 2007
    Location
    Ohio
    Posts
    341
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Can you make a function that burns all the logs in your inventory?

    ive been working on one, but my scripting isn't as good as yours.

    ive been using the firemaking.scar in the includes if that helps at all

    maybe you should name it 'burnall;'

    id greatly appreciate it

  11. #11
    Join Date
    Jul 2007
    Posts
    1,431
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by malotthouse View Post
    Can you make a function that burns all the logs in your inventory?

    ive been working on one, but my scripting isn't as good as yours.

    ive been using the firemaking.scar in the includes if that helps at all

    maybe you should name it 'burnall;'

    id greatly appreciate it
    Well, then it's like script, because it should include randomfinding, mover when object is on way, clicker, lot of testing...no sorry

    Something harder though... 2 I made before were just that kind I wanted
    [CENTER][SIZE="4"]Inactive[/SIZE]I forgot my password[/CENTER]

  12. #12
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Quote Originally Posted by Timothegreat View Post
    gas finder
    I think my gasfinder still works 100%...
    (It's not in SRL, but in New Functions/Experimental Functions on the forum)



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  13. #13
    Join Date
    Jun 2007
    Location
    Ohio
    Posts
    341
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Negaal View Post
    Well, then it's like script, because it should include randomfinding, mover when object is on way, clicker, lot of testing...no sorry

    Something harder though... 2 I made before were just that kind I wanted
    no, i want a function that can be called. because currently i have an auto woodcutter and would love to turn it into a woodcutter/firemaker. the antirandoms and all of that can go with the other script

  14. #14
    Join Date
    Aug 2007
    Location
    Hawaii
    Posts
    3,880
    Mentioned
    7 Post(s)
    Quoted
    152 Post(s)

    Default

    Well, where are you burning the logs? town?, on grass or road?...
    Road.....you know outside the varrock east bank?
    Faith is an oasis in the heart which will never be reached by the caravan of thinking.

  15. #15
    Join Date
    Jul 2007
    Posts
    1,431
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by kingarabian View Post
    Road.....you know outside the varrock east bank?
    I do it tomorrow, maybe
    [CENTER][SIZE="4"]Inactive[/SIZE]I forgot my password[/CENTER]

  16. #16
    Join Date
    Aug 2007
    Location
    Hawaii
    Posts
    3,880
    Mentioned
    7 Post(s)
    Quoted
    152 Post(s)

    Default

    Quote Originally Posted by Negaal View Post
    I do it tomorrow, maybe
    Aite thx dawg!!!!
    Faith is an oasis in the heart which will never be reached by the caravan of thinking.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Taking a Request
    By ZaSz in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 03-26-2008, 01:29 AM
  2. Taking request
    By Dangerous Garden Tools in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 12-27-2007, 08:05 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
  •