[SRL #27+] AutoFiremaker

Discussion in 'Outdated RS Scripts' started by Jethr0x, Oct 5, 2008.

[SRL #27+] AutoFiremaker
  1. Unread #1 - Oct 5, 2008 at 12:59 PM
  2. Jethr0x
    Joined:
    Jan 24, 2007
    Posts:
    3,070
    Referrals:
    13
    Sythe Gold:
    0

    Jethr0x Grand Master
    Banned

    [SRL #27+] AutoFiremaker

    This was made on request, it is very basicm but it works, keep an eye on it, i will update it later today... im trying to get pen or matthew to make a SCAR Mod :S ...

    Code:
    program New;
    {.include SRL/SRL/misc/Smart.scar}
    {.include SRL/SRL.scar}
    {.include SRL/SRL/reflection/Reflection.scar}
    
    var
      MyPos, MyPos2, tileMS : tPoint;
      Tiles : tPointArray;
    
    const
      Username    = '';          {   Username of the account autoing.              }
      Password    = '';          {   Password of your account.                     }
      Nick        = '';          {   Nick: Nickname, 3 lowercase letters of name   }
      World       = 96;          {   World to auto in                              }
      
    procedure PrntMyPos;
    begin
      MyPos := GetMyPos;
      writeln('( ' +IntToStr(MyPos.x)+ ', ' +IntToStr(MyPos.y)+ ')');
    end;
    
    function didTheFireLight : boolean;
    var
      i : integer;
    begin
      i := 2;
      repeat
        MouseItem(1, true);
        wait(400);
        PrntMyPos;
        MouseItem(i, true);
        i := i + 1;
        repeat
          wait(500);
          MyPos2 := GetMyPos;
        until(MyPos2.x < MyPos.x)
      until(i > 28)
      result := True;
    end;
    
    function Find(spot : string; clickleft : boolean): boolean;
    begin
     case spot of
      'bank'            : Tiles:= [Point(3250+random(6), 3420-random(1))];
      'startspot1'      : Tiles:= [Point(3262+random(3), 3429)];
      'startspot2'      : Tiles:= [Point(3262+random(3), 3428)];
      'crossroads'      : Tiles:= [Point(3246, 3430)];
      'bankBooth'       : Tiles:= [Point(3251+random(5), 3419)];
     end;
     if (DistanceFrom(Tiles[0]) > 1) then
      begin
        WalkToTile(Tiles[0], 0, 0);
        FindNormalRandoms;
        FFlag(10);
        Writeln(' # At the: ' +spot+ '.');
        Result := True;
        Exit;
      end;
      TileMS := TileToMS(Tiles[0], 0);
      Mouse(TileMS.x, TileMS.y, 0, 0, ClickLeft);
      Result := True;
    end;
    
    procedure BankShit;
    begin
      ChooseOption('-quic');
      repeat
        wait(100);
      until(BankScreen);
      wait(100+random(1000));
      FixBank;
      wait(100+random(1000));
      Withdraw(1, 1, 0);
    end;
    
    procedure Walk;
    begin
      case random(2) of
        0: Find('startspot1', true);
        1: Find('startspot2', true);
      end;
      flag;
      DidTheFireLight;
      Find('crossroads', true);
      Flag;
      Find('bank', true);
      Flag;
      wait(1000+random(1000));
      Find('bankbooth', false);
      BankShit;
    end;
    
    procedure declarePlayers;
    begin
      NumberOfPlayers(1);
      CurrentPlayer := 0;
      Players[0].Name := Username;
      Players[0].Pass := Password;
      Players[0].Nick := Nick;
      Players[0].Active := True;
    end;
    
    procedure Setup;
    begin
      SmartSetupEx(WorldNumber, true, true, false);
      wait(5000);
      SetTargetDC(SmartGetDC);
      SetupSRL;
      DeclarePlayers;
      if not(LoggedIn) then
        LoginPlayer;
    
    end;
    
    procedure Determine;
    begin
      PrntMyPos;
    end;
    
    begin
      Setup;
      repeat
        Walk;
        wait(500);
        //PrntMyPos;
      until(False)
    end.
    START IN VARROCK EAST BANK WITH TINDERBOX in 1ST INVENTORY SLOT, AND LOGS IN INVENTORY, HAVE THE REST OF LOGS IN THE 1ST TAB, 1ST BANK SLOT.
     
  3. Unread #2 - Oct 5, 2008 at 2:25 PM
  4. xxthebeastxx
    Joined:
    May 17, 2008
    Posts:
    1,680
    Referrals:
    1
    Sythe Gold:
    0

    xxthebeastxx Guru
    Banned

    [SRL #27+] AutoFiremaker

    Safe overnight, or beta?
     
  5. Unread #3 - Oct 5, 2008 at 3:49 PM
  6. uzn33dhelp
    Joined:
    May 19, 2008
    Posts:
    458
    Referrals:
    0
    Sythe Gold:
    0

    uzn33dhelp Forum Addict

    [SRL #27+] AutoFiremaker

    Haha thanks Jeth....My firemaker isnt quite finished, and yours pwns mine...Lol anyways....Good Job, i'll test it out....
     
  7. Unread #4 - Oct 5, 2008 at 3:53 PM
  8. Jethr0x
    Joined:
    Jan 24, 2007
    Posts:
    3,070
    Referrals:
    13
    Sythe Gold:
    0

    Jethr0x Grand Master
    Banned

    [SRL #27+] AutoFiremaker

    all beta
     
  9. Unread #5 - Oct 5, 2008 at 4:39 PM
  10. Gf Runescape
    Joined:
    Oct 3, 2008
    Posts:
    79
    Referrals:
    0
    Sythe Gold:
    0

    Gf Runescape Member

    [SRL #27+] AutoFiremaker

    Line 105: [Error] (17684:14): Unknown identifier 'WorldNumber' in script

    Sorry i'm not good at setting these up :S
     
  11. Unread #6 - Oct 5, 2008 at 5:07 PM
  12. Jethr0x
    Joined:
    Jan 24, 2007
    Posts:
    3,070
    Referrals:
    13
    Sythe Gold:
    0

    Jethr0x Grand Master
    Banned

    [SRL #27+] AutoFiremaker

    sorry
    change worldnumber to "world"
     
  13. Unread #7 - Oct 5, 2008 at 6:11 PM
  14. Gf Runescape
    Joined:
    Oct 3, 2008
    Posts:
    79
    Referrals:
    0
    Sythe Gold:
    0

    Gf Runescape Member

    [SRL #27+] AutoFiremaker

    It works good until you get to one spot by the door and it says "You can't make a fire here"
     
  15. Unread #8 - Oct 5, 2008 at 11:26 PM
  16. Jethr0x
    Joined:
    Jan 24, 2007
    Posts:
    3,070
    Referrals:
    13
    Sythe Gold:
    0

    Jethr0x Grand Master
    Banned

    [SRL #27+] AutoFiremaker

    eek, it shoodnt go there
    :S
     
  17. Unread #9 - Oct 7, 2008 at 12:32 PM
  18. killertoms1
    Joined:
    Aug 1, 2008
    Posts:
    196
    Referrals:
    0
    Sythe Gold:
    0

    killertoms1 Active Member
    Banned

    [SRL #27+] AutoFiremaker

    thanks fr this ive been waiting for auto firemaker for weeks
     
  19. Unread #10 - Oct 7, 2008 at 3:00 PM
  20. F33lingPK
    Joined:
    May 19, 2008
    Posts:
    226
    Referrals:
    0
    Sythe Gold:
    0

    F33lingPK Active Member
    Banned

    [SRL #27+] AutoFiremaker

    where the F
    i need to post that letters on?
    idk how to start a script?
     
  21. Unread #11 - Oct 7, 2008 at 4:01 PM
  22. Jethr0x
    Joined:
    Jan 24, 2007
    Posts:
    3,070
    Referrals:
    13
    Sythe Gold:
    0

    Jethr0x Grand Master
    Banned

    [SRL #27+] AutoFiremaker

    ...?

    copy + paste it onto scar, fill in info, and press run.
     
  23. Unread #12 - Oct 7, 2008 at 7:42 PM
  24. shane79
    Joined:
    Oct 6, 2008
    Posts:
    9
    Referrals:
    0
    Sythe Gold:
    0

    shane79 Newcomer

    [SRL #27+] AutoFiremaker

    what kind of logs will it burn, coz ive got way too many willows that could use a good burning
     
  25. Unread #13 - Oct 7, 2008 at 9:27 PM
  26. Jethr0x
    Joined:
    Jan 24, 2007
    Posts:
    3,070
    Referrals:
    13
    Sythe Gold:
    0

    Jethr0x Grand Master
    Banned

    [SRL #27+] AutoFiremaker

    any logs u can use
    put them in the 1st bank slot.
     
  27. Unread #14 - Oct 8, 2008 at 11:45 PM
  28. xxthebeastxx
    Joined:
    May 17, 2008
    Posts:
    1,680
    Referrals:
    1
    Sythe Gold:
    0

    xxthebeastxx Guru
    Banned

    [SRL #27+] AutoFiremaker

    It's actually pretty good, got 47-50 fming with it. Thanks. Woulda posted proggy but none I guess.
     
  29. Unread #15 - Oct 9, 2008 at 1:15 AM
  30. in need of skill
    Referrals:
    0

    in need of skill Guest

    [SRL #27+] AutoFiremaker

    LOOKS NICE! again if ever you need help with a script or access to a membs account i got your back. just message me and ill try to get back to you.
     
  31. Unread #16 - Oct 9, 2008 at 4:10 PM
  32. Jethr0x
    Joined:
    Jan 24, 2007
    Posts:
    3,070
    Referrals:
    13
    Sythe Gold:
    0

    Jethr0x Grand Master
    Banned

    [SRL #27+] AutoFiremaker

    thanks ;)

    But I prefer to use only my own accounts, just incase Jagex watches IPs.. about 2 weeks ago, all my accounts had 10 day bans for client hacking :(
     
  33. Unread #17 - Oct 9, 2008 at 6:17 PM
  34. xxthebeastxx
    Joined:
    May 17, 2008
    Posts:
    1,680
    Referrals:
    1
    Sythe Gold:
    0

    xxthebeastxx Guru
    Banned

    [SRL #27+] AutoFiremaker

    Well, I ran into some bugs. It will fire make in the line in front of the door to the building across from the bank, you can't light a fire there so it just sits.
     
  35. Unread #18 - Oct 9, 2008 at 7:27 PM
  36. Jethr0x
    Joined:
    Jan 24, 2007
    Posts:
    3,070
    Referrals:
    13
    Sythe Gold:
    0

    Jethr0x Grand Master
    Banned

    [SRL #27+] AutoFiremaker

    eh, I made this quickly.

    I will update over the weekend
     
  37. Unread #19 - Nov 5, 2008 at 5:48 PM
  38. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    [SRL #27+] AutoFiremaker

    Looks crisp. I wish i had the time to do requests.


    Edit: jethr0x, i saw that you want to be a mod. The worst thing you can do is bother the admins, they will think something is up when someone is pushing for mod that bad. + Macroman and Swan are mods of scar scripting as well.
     
  39. Unread #20 - Nov 7, 2008 at 11:55 AM
  40. Jethr0x
    Joined:
    Jan 24, 2007
    Posts:
    3,070
    Referrals:
    13
    Sythe Gold:
    0

    Jethr0x Grand Master
    Banned

    [SRL #27+] AutoFiremaker

    why is this in the outdated section
     
< Rs Auto Alch | Selling Strength Pure(Ish) >

Users viewing this thread
1 guest


 
 
Adblock breaks this site