Results 1 to 6 of 6

Thread: How do I improve this firemaker?

  1. #1
    Join Date
    Mar 2007
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default How do I improve this firemaker?

    I made a very simple auto firemaker, This will probably get you banned within 2 seconds :S

    How should I improve this? I'm such a noob tbh :/

    SCAR Code:
    program New;
    begin
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(584, 265, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(584, 302, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(584, 337, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(584, 375, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(584, 409, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(584, 447, true)
    //next row ------------next row-------------next row
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(628, 230, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(628, 265, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(628, 302, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(628, 337, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(628, 375, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(628, 409, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(628, 447, true)
    //next row ------------next row-------------next row
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(670, 230, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(670, 265, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(670, 302, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(670, 337, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(670, 375, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(670, 409, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(670, 447, true)
    //next row ------------next row-------------next row
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(710, 230, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(710, 265, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(710, 302, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(710, 337, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(710, 375, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(710, 409, true)
     wait(1420)
    clickmouse(584, 230, true) //tinderbox
     wait(1420)
      clickmouse(710, 447, true)
    end.
    BionicLlama's AutoTyper!
    ^My first script^

  2. #2
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    instead of clickmouse, use mouse(x,y,xrand,yrand,true);
    x,y and true are the same as clickmouse

    xrand and yrand are how random you want it to be

    also, you should read some tuts on dtm's and colorfinding
    Interested in C# and Electrical Engineering? This might interest you.

  3. #3
    Join Date
    Sep 2006
    Posts
    6,089
    Mentioned
    77 Post(s)
    Quoted
    43 Post(s)

    Default

    You can also get the ItemCoords using a SRL-Function and try using For.. do ..
    Hup Holland Hup!

  4. #4
    Join Date
    Dec 2006
    Location
    Australia
    Posts
    698
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    How about u find the tinderbox dtm, click than find the log dtm and click. Would work perfect.

  5. #5
    Join Date
    Sep 2007
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    is that work?

    is it go to bank too , ?

  6. #6
    Join Date
    Jul 2008
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You definately need to change the things listed below!!!!!

    Add a Include at the very beggining (Just after Program FireMaker;)
    SCAR Code:
    {.include SRL/SRL.SCAR}


    Make it repeat and bank!
    SCAR Code:
    repeat
    OpenBankFast('feb'); // FEB = Fallador East Bank (Look into a banking tutorial)
    wait(300);
    Withdraw(1, 1, 27); // Takes 27 logs from first bank slot
    CloseBank; //Speaks for itself
    wait(500);

    Mouse(-, -, 5, 5, True);
    Flag;
    //Walks somewhere out of bank?

    LightEm;
    until(false); //Infinate loop for now.. Change later

    Instead of click click click try

    SCAR Code:
    procedure LightEm;
    begin
      for i := 2 to 28 do
      begin
        FindFastRandoms; //Theres some AntiRandoms tuts all around
        MouseItem(1);
        Wait(200);
        MouseItem(i);
        WaitForLight;
      end;
    end;

    And that means you need to add a function WaitForLight;

    SCAR Code:
    Procedure WaitForLight;
    var Z: integer;
    begin
     MarkTime(Z); //Make sure it's not waiting for ever!
     Repeat
      wait(10);
     Until (not FindColor(TinderBoxColor)) or (TimeFromMark(Z) > 3000);
    end;

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. How can i improve this
    By Mark in forum OSR Help
    Replies: 10
    Last Post: 05-25-2008, 07:17 PM
  2. What to improve into my script?
    By mx1000 in forum OSR Help
    Replies: 0
    Last Post: 06-21-2007, 09:00 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
  •