Results 1 to 5 of 5

Thread: My First Script, A PowerChopper!(no bank)

  1. #1
    Join Date
    Jun 2007
    Location
    La Mirada, CA
    Posts
    2,484
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    SCAR Code:
    // Made By OPTiPLEX
    // First Script!

    program PowerChopper;
    {.include SRL\SRL.SCAR}

    var x,y: integer;

    Const
      Tree = 3116158;


    begin
      SetupSRL;
      repeat
        if InvFull = true then
        begin
          writeln('Its full!');
          dropAll;
          wait(5000);
        end else
        writeln('Hmm not full yet, lets get Chopping!');
        begin
          if FindObj(x, y, 'hop', Tree, 30) then
          begin
            MMouse(x, y, 1, 1);
            Mouse(x, y, 1, 1, true);
            writeln('Yeah Chop Chop Chop!');
            wait(5000);
          end else
          begin
            writeln('Nothing Found :(!');
            wait(5000);
          end;
        end;
      until(false);
    end.

    first off standards...^^ those are correct standards...

    SCAR Code:
    begin
             MMouse(x, y, 1, 1);
             Mouse(x, y, 1, 1, true);
             writeln('Yeah Chop Chop Chop!');
             wait(5000);
        end

    2nd off you dont need MMouse then Mouse b/c Mouse moves the mouse and clicks...

    SCAR Code:
    if FindObj(x, y, 'hop', Tree, 30) then
        begin
             MMouse(x, y, 1, 1);
             Mouse(x, y, 1, 1, true);
             writeln('Yeah Chop Chop Chop!');
             wait(5000);
        end

    instead of doing that^^... i would use an uptext also just to make sure you wanna chop it...

    SCAR Code:
    if FindObj(x, y, 'Tree', Tree, 30) then
        begin
             MMouse(x, y, 1, 1);
             if IsUpText('Chop Down') then
             Mouse(x, y, 1, 1, true);
             writeln('Yeah Chop Chop Chop!');
             wait(5000);
        end

    or something of that sort....

    also waits need to be randomized...like so....

    SCAR Code:
    wait(5000 + random(200);

    or some other random milliseconds...or you could use FTWait....but that it alittle different and if you dont know it then you wouldnt understand it...

    there are quite a few more things i would change to make it better, but this is the basic things...add me on msn if you want more suggestions...

    "Failure is the opportunity to begin again more intelligently" (Henry Ford)


  2. #2
    Join Date
    Sep 2007
    Posts
    105
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well, here is my opinion. Its pretty easy to do but its great for first script cause how you see i didnt make any scripts yet.
    Needed an oak auto cutter and willow auto cutter what includes:
    -Banking
    -Fast chopping, banking and finding what needed
    -Good autoresponder and antiban
    -Good and nice form
    -Easy to use
    -Great FailSafe
    -And more good things
    -Must work atleast for 4 hours
    Paying for them! 250k + 50k each week for making them work better
    Questions would be accepted, if deal, Krendzel@hotmail.com

    http://www.fenjer.com/adnan/SRLStats/2720.png

  3. #3
    Join Date
    Apr 2007
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    great script, however the genies get annoying

  4. #4
    Join Date
    May 2007
    Location
    Tasmania, Aus
    Posts
    898
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    hmm, i need to know how to actually make scripts i just dont get it =P

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

    Default

    i try it.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. bank script error!!!!!!
    By sundeep125 in forum OSR Help
    Replies: 2
    Last Post: 04-05-2008, 08:32 PM
  2. Replies: 4
    Last Post: 05-28-2007, 10:04 PM
  3. My bank script
    By marzey in forum OSR Help
    Replies: 5
    Last Post: 05-05-2007, 02:19 PM
  4. First script(powerchopper) help
    By Macho Man67 in forum OSR Help
    Replies: 4
    Last Post: 04-17-2007, 03:56 AM
  5. Error in PowerChopper script
    By AlexandrSN in forum OSR Help
    Replies: 15
    Last Post: 11-08-2006, 09:34 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
  •