Results 1 to 10 of 10

Thread: PieChoper!!

  1. #1
    Join Date
    Mar 2007
    Location
    In your computer
    Posts
    244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default PieChoper!!!

    PieChoper

    Current Version Is = 0.2.

    What script does is cuts a full inventory of logs then drops them.
    Post bugs here, and if you can help fixing them add me on msn i_like_pie1995@hotmail.com.

    PieChoper 0.1
    FEATURES.
    - Anti-Randoms
    - Cuts And Drops Logs
    - Ent Finding
    BUGS.
    - Script Does Not Find Axe Head - Need Help With This.
    - Script Has Bad Report - Fixed In Version 0.2.
    - Script Sometimes Does Not Find Ent - Need Help With This.
    - Script Hasnt Got Good Anti-Ban - Need Help With This.
    - Bad Standards - Fixed In Version 0.2.

    PieChoper 0.2
    FEATURES.
    - Anti-Randoms
    - Cuts And Drops Logs
    - Good Report
    - Ent Finding
    - Good Standards
    BUGS.
    - Script Does Not Find Axe Head - Need Help With This.
    - Script Sometimes Does Not Find Ent - Need Help With This.
    - Script Hasnt Got Good Anti-Ban - Need Help With This.

  2. #2
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    STANDARDS PLEASE!

    Btw, I don't think he is making all these scripts he is releasing.. vit1995@hotmail.com doesn't look like his real MSN..


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  3. #3
    Join Date
    Apr 2007
    Location
    Texas
    Posts
    1,668
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you missed a semi colion after wait.
    and another aftewr login player

    SCAR Code:
    program PieTreeChoper;

      {.include SRL/SRL.scar}
      //Stand near some trees.
      //Have your axe first inventory spot.
      //Sorry but script does not pick up axe head
      //If you can help me with that add me on msn
      //vit1995@hotmail.com
    const
      TreeColor  = 2252880;//The tree color.
      TreeName   = 'ree';//3 letters of the tree's name.
      Times      = 1;  //How many times you want to cut and drop logs?
      RunAwayDir = 'S';//The direction to run away incase of a fight;
    var
      Times1: integer;

      procedure DeclarePlayers;
      begin
        HowManyPlayers := 1;
        NumberOfPlayers(HowManyPlayers);
        CurrentPlayer := 0;

        Players[0].Name   := '';      //Fill in your username
        Players[0].Pass   := '';      //Fill in your password
        Players[0].Nick   := '';      //2-3 letters of your username
        Players[0].Active := True;      //Set true if you want to use this player

        NickNameBmp := CreateBitMapMaskFromText(Players[CurrentPlayer].Nick, UpChars);
      end;

      procedure RunAway;
      begin
        RunAwayDirection(RunAwayDir);
        Wait(12000 + random(2000));
        RunBack;
      end;

      procedure Randoms;
      begin
        FindTalk;
        wait(10);
        FindNormalRandoms;
        if (FindFight) then
          RunAway;
      end;

      procedure QuickRands;
      begin
        CloseWindow;
        Wait(10);
        FindTalk;
        Wait(10);
        FindDead;
        Wait(10);
        FindMime;
        Wait(10);
        FindMaze;
        Wait(10);
        FindQuiz;
        Wait(10);
        FindScapeRune;
        Wait(10);
        ClickToContinue;
        Wait(10);
        FindTalk;
        Wait(10 + Random(50));
      end;

      procedure Inventory;
      begin
        Mouse(649, 185, 2, 2, True);
      end;

      procedure Report;
      begin
        ClearDebug;
        WriteLn('Pie Choper');
        WriteLn('Worked for ' + TimeRunning);
        WriteLn('Chopped And Droped' + IntToStr(Times) + ' Loads');
      end;

      procedure CutTree;
      begin
        repeat
          if FindColor(x, y, TreeColor, 0, 0, 450, 450) then
            MMouse(x, y, 3, 3);
          Wait(1000 + random(200));
        until (IsUpText(TreeName));
        if (IsUpText(TreeName)) then
          Mouse(x, y, 5, 5, False);
        Wait(500 + random(1000));
        ChooseOption(x, y, 'own');
        Wait(5000 + random(2000));
      end;

      procedure WieldAxe;
      begin
        Mouse(585, 223, 2, 2, True);
      end;

      procedure Drop;
      begin
        DropAll;
      end;

      procedure AntiBan;
      begin
        Mouse(585, 188, 3, 3, True);
        Wait(600 + random(400));
        MMouse(716, 373, 4, 4);
        Wait(3000 + random(2000));
        Inventory;
        TypeSend('lalalalalla');
        Wait(1000 + random(500));
        TypeSend('wc...');
      end;

    begin
      SetupSRL;
      DeclarePlayers;
      if not LoggedIn then
        LoginPlayer;
      Inventory;
      WieldAxe;
      repeat
        CutTree;
        Randoms;
        CutTree;
        QuickRands;
        CutTree;
        AntiBan;
        Drop;
      until (Times = Times1);
      if (Times = Times1) then
        Report;
      Exit;
      TerminateScript;
    end.
    [IMG]http://farm3.static.flickr.com/2120/2052732965_348f3629d0_o.jpg[/IMG]

  4. #4
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Does anyone think he is not making these scripts, just leeching them from another site???


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  5. #5
    Join Date
    Apr 2007
    Location
    Texas
    Posts
    1,668
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i realy dont care until he tries to apply for membership with them. He did miss a semi colon on the same place now...
    [IMG]http://farm3.static.flickr.com/2120/2052732965_348f3629d0_o.jpg[/IMG]

  6. #6
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Yeah, he's just putting them up, even though he leeched em..


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  7. #7
    Join Date
    Mar 2007
    Location
    In your computer
    Posts
    244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I did not leech them i make them my self u retard.And iam gonna add standarts i just gotta learn bout them.

    I do not leech scripts i like scripting and learning it.Iam making them my self.
    vit-1995@hotmail.com is my MSN i use to talk to my friends, iam goin to make another hotmail account.

  8. #8
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    It just looks that way because I ahve seen the same stuff in other scripts.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  9. #9
    Join Date
    Mar 2007
    Location
    In your computer
    Posts
    244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yah ok prove it?What in my script i use Mouse and in other scripts people use it too?lmfao, show me at least 1 code that looks just like mine and tell me the name of the script u took it from

  10. #10
    Join Date
    Apr 2007
    Location
    Texas
    Posts
    1,668
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Pie, please, you should watch your atitude. There realy is no reason to get upset. Everyone is entitled to their opinion.
    I think we still are iniocent till guilty, so relax, and foruc more on coding (standards :P lol) and youll be fine
    [IMG]http://farm3.static.flickr.com/2120/2052732965_348f3629d0_o.jpg[/IMG]

Thread Information

Users Browsing this Thread

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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •