Page 1 of 2 12 LastLast
Results 1 to 25 of 46

Thread: Why wont this Script click on a Tree to start cutting

  1. #1
    Join Date
    Nov 2011
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Why wont this Script click on a Tree to start cutting

    Code:
    program MyWoodcutter;
    {$DEFINE SMART}
    {$i srl/srl.simba}
    {$i sps/sps.simba}
    
    const
    {SMART Setup Constants}
      WORLD = 0;  // Set a world, if you'd like. Leave 0 to choose a random world.
      MEMBERS = False;  // Are you Members or Free-To-Play? False for F2P, True for P2P.
      SIGNED = True;
      loadcount = 50;
      var
      count: integer;
    {---------------------------}
    {--------Script Info--------}
      //Author = 'SuperSaiyanGoku';
      //Name = 'MyWoodcutter';
      //Version = '1.0';
    {---------------------------}
    procedure DeclarePlayers; //This declares the players to be used in the script.
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;
    
      Players[0].Name := ''; //Your Runescape username
      Players[0].Pass := ''; //Your Runescape password
      Players[0].Nick := ''; //3 or 4 lowercase letters from your Runescape username. Used as a Nickname.
      Players[0].Active := True; //Set to true if you want to use this player. Set to False to disable this player.
      Players[0].Pin := ''; //Leave blank if the player doesn't have a Bank PIN.
    end;
    procedure SetupScript;
    begin;
      WriteLn('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
      WriteLn('Hope you enjoy this Yew cutting script.');
      WriteLn('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
      WriteLn('I made this My self.');
      WriteLn('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
    end;
    procedure AntiBan;
    begin
      case random(50) of
          0: RandomRClick;
          1: PickUpMouse;
          2: RandomRClick;
          3: HoverSkill('woodcutting', False);
          4: SetAngle(SRL_ANGLE_HIGH);
      end;
    end;
    
    Procedure WalkToBank;
        Var
          ToBank:TPointArray;
        Begin
        SetupSRL;
        SPS_Areas := ['11_6','11_7'];
    ToBank:= [Point(3828, 3360), Point(3845, 3297), Point(3845, 3226), Point(3847, 3191), Point(3867, 3196), Point(3867, 3209)];
     SPS_WalkPath(ToBank);
     end;
    
    procedure ChopTree; //This chops your trees.
    var x, y: integer;
    begin
        repeat
        FindNormalRandoms;
        ToggleXPBar(true);
        WriteLn('ChopTree procedure activated! Finding tree.');
        WriteLn('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
        if FindObjCustom(x,y, ['ew','hop','own'], [3097151, 4675164],5) then//This finds the object, records the X and Y values, and tells the script to find the option "Tree".
        begin
        WriteLn('Tree found! Clicking option.');
        WriteLn('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
          Mouse(x, y, 0, 0, true);
          ChooseOption('ew');  //This tells the script to left-click on the object and select "Yew".
        end;
          repeat
          Wait(RandomRange(2000, 3000))
          AntiBan;
          Until not IsUpText('ew') or (InvFull);
        Until (InvFull);
        writeLn('Banking');
    end;
    
    Procedure Bank;
    begin
    if not LoggedIn then
    Exit;
    repeat
    SetAngle(srl_angle_high);
    OpenBanknpc;
    Wait(Random(700));
    until BankScreen or PinScreen;
    if PinScreen then
    begin
    repeat
    InPin(Players[0].Pin);
    until BankScreen or not (LoggedIn);
    end;
      begin
        if Players[CurrentPlayer].Booleans[0] then
            DepositAll else
            Deposit(2 ,28 ,true);
            CloseBank;
            stats_IncVariable('Times Banked',1);
      end
      Writeln('Bout to bank these logs');
      End;
    
    Procedure WalkToYews;
    Var
      ToYews:TPointArray;
     Begin
    SetupSRL;
    SPS_Areas := ['11_6','11_7'];
    ToYews :=  [Point(3873, 3213), Point(3847, 3273), Point(3842, 3338), Point(3819, 3375), Point(3878, 3346), Point(3898, 3341)];
     SPS_WalkPath(ToYews);
     end;
    
      Begin
      Smart_Server := WORLD;
      Smart_Members := MEMBERS;
      Smart_Signed := SIGNED;
      Smart_SuperDetail := False;
      SetupSRL;
      SetupScript;
      declarePlayers;
      LoginPlayer;
    
      begin
      WalkToBank;
      Bank;
      WalkToYews;
      repeat
      Antiban;
      ChopTree;
      WalkToBank;
      Bank;
      walkToYews;
      Inc(count);
      until (count=loadcount)
      end;
      end.
    
    
    
    //Notice that AntiRandoms isn't in here. It would be useless to include because Reflection is currently broken.
    
    
       //This stops the script completely once your player has failed. e.g. Gotten into a random event, died (almost impossible) or failed to find a tree.
    Why wont the script start cutting down a Yew Log at Fally? Trying to Modify a GE Yew Cutter to a Fally it compiles correctly but the mouse wont go over im using ACA v2 Color Aid for help finding the colors
    ================================================== ========================================
    For all you Faggots like KeepBotting when you post the full code on a Open Source Website in a form post especially a Woodcutting Script the most basic form of Bot for runescape when there are thousands of Simba and Java Scripts out there for this skill, and the most common form of Script for people to learn from there is something in Plagiarism called "Fair Use".
    Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

    If the copy is used for teaching at a non-profit institution, distributed without charge, and made by a teacher or students acting individually, then the copy is more likely to be considered as fair use. In addition, an interpretation of fair use is more likely if the copy was made spontaneously, for temporary use, not as part of an "anthology" and not as an institutional requirement or suggestion.
    http://www-sul.stanford.edu/cpyright.html
    1. This is a Non Profit Institution.
    2. The original Script was distributed without charge
    3. I am considered a Student asking a Simple Fucking question here to learn
    4. This was for Temporary use HOW AM I TO LEARN IF I DON'T POST THE WHOLE MODIFY SCRIPT ESPECIALLY IF I DONT KNOW WHAT OR WHERE THE PROBLEM IS?

    Plagiarism is defined in dictionaries as the "wrongful appropriation," "close imitation," or "purloining and publication" of another author's "language, thoughts, ideas, or expressions," and the representation of them as one's own original work. I NEVER CLAIMED THIS SCRIPT WAS ORIGINAL MINE AND STILL DON'T
    Last edited by Goku123; 03-01-2012 at 04:02 AM.

  2. #2
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Yo, nice rip of my kbPowerMaples script I hope you do something good with it -.- Thanks for giving me credit, noobface.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  3. #3
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

    Default

    change the true in the mouse procedure to false.

  4. #4
    Join Date
    Feb 2012
    Location
    West Virginia
    Posts
    387
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by Nebula View Post
    change the true in the mouse procedure to false.
    he ish a theif dont give him advice LOLZ!!!!
    lol.. haha.. lol

  5. #5
    Join Date
    Jan 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It's an open script client, technically there aren't any thieves.

  6. #6
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by brettpenney View Post
    It's an open script client, technically there aren't any thieves.
    It would still have been cool to give me at least 70% credit.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  7. #7
    Join Date
    May 2008
    Posts
    308
    Mentioned
    1 Post(s)
    Quoted
    14 Post(s)

    Default

    Quote Originally Posted by KeepBotting View Post
    It would still have been cool to give me at least 70% credit.
    I feel you.

  8. #8
    Join Date
    Feb 2012
    Posts
    43
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by exilednoob View Post
    he ish a theif dont give him advice LOLZ!!!!
    lol.. haha.. lol
    lol, haha, No.

  9. #9
    Join Date
    Jan 2009
    Location
    Turlock/LA, California
    Posts
    1,494
    Mentioned
    3 Post(s)
    Quoted
    66 Post(s)

    Default

    Quote Originally Posted by brettpenney View Post
    It's an open script client, technically there aren't any thieves.
    just because its open source doesn't mean it isn't their property. they can still copyright it. guess what, firefox is open source, but if you take their source and call it something else, u think that isn't stealing? wrong, in fact you can get heavily sued over that. just because something is open source doesn't mean people can steal it.

    you obviously never wrote a script. scripts are the programmers creations, and i for one don't like it when someone steals (yes, steals) my creation and says its their own.

  10. #10
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by x[Warrior]x3500 View Post
    just because its open source doesn't mean it isn't their property. they can still copyright it. guess what, firefox is open source, but if you take their source and call it something else, u think that isn't stealing? wrong, in fact you can get heavily sued over that. just because something is open source doesn't mean people can steal it.

    you obviously never wrote a script. scripts are the programmers creations, and i for one don't like it when someone steals (yes, steals) my creation and says its their own.
    +1.

    Now add proper credits (to me and Griff).
    Last edited by Zyt3x; 03-01-2012 at 05:47 PM.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  11. #11
    Join Date
    Nov 2011
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    um no its called learning

    In fact i already modified it to my code. And i never claimed it was mine in the first place to. I just said why wont it start cutting a tree

  12. #12
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Goku123 View Post
    um no its called learning

    In fact i already modified it to my code. And i never claimed it was mine in the first place to. I just said why wont it start cutting a tree
    Point is, you took my code and you're not intelligent enough to even edit it properly.
    So now you're asking for help with a script that you probably won't even release.
    And to further my point, you haven't checked this thread for a month(?), so you must not be very dedicated to programming.
    And this "modifying" you speak of is nothing more than changing UpText and colors, which my grandmother can do.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  13. #13
    Join Date
    Nov 2011
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by KeepBotting View Post
    Point is, you took my code and you're not intelligent enough to even edit it properly.
    So now you're asking for help with a script that you probably won't even release.
    And to further my point, you haven't checked this thread for a month(?), so you must not be very dedicated to programming.
    And this "modifying" you speak of is nothing more than changing UpText and colors, which my grandmother can do.
    Its not your code when its Open Source for all i know its someone elses. Considering its on the web for any one and everyone to see any one can take it and modify it. Not only that you never copyrighted it so its fair game.
    Last edited by Coh3n; 03-01-2012 at 07:10 AM.

  14. #14
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Goku123 View Post
    Its not your code when its Open Source for all i know its someone elses. Considering its on the web for any one and everyone to see any one can take it and modify it. Not only that you never copyrighted it so its fair game bitch. Suck it
    Lol, the moronic newbie is mad.
    Well, have fun failing at scripting with code you stole from me, idiot.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

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

    Default

    Official warning for plagiarism is given.
    I made a new script, check it out!.

  16. #16
    Join Date
    Nov 2011
    Location
    Jozi, South Africa
    Posts
    249
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Smile Plagiarism

    This is old hat - but I still find it funny.

    If you copy from one person - it's plagiarism. If you copy from many - it's research.
    Ciao
    NM

  17. #17
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    Quote Originally Posted by NickMystre View Post
    This is old hat - but I still find it funny.

    If you copy from one person - it's plagiarism. If you copy from many - it's research.
    No it's not. You aren't allowed to copy anything from anyone. Everything script posted on this forum is copyrighted by the person who submits it as first, unless said otherwise by that person. Opensource means you may read it, learn from it and post suggestions. It doesn't mean you can cut the stuff out you need and put it in your script. We do allow SRL methods to be copied in your script outside the srl include if you add credits. If you want to use keepBotting his function and procedures you need to ask him if you may use it. He then decides if it's necessary to give credits. Opensource is not free as in free beer...

    Too long didn't read: It's copyrighted!
    Working on: Tithe Farmer

  18. #18
    Join Date
    Nov 2011
    Location
    Jozi, South Africa
    Posts
    249
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Smile Plagiarism

    @masterBB: No offense, Sir! My comment was intended as a joke - my attempt to inject a little humour. Sorry -> I mis-judged just how serious this is taken.

    And for the record - I completely agree with you and the extending / giving of credit where appropriate. Again - sorry.

    EDIT:
    //OFFTOPIC!!
    tl:dr -> Is this not the worse acronym around!! It really makes my blood boil. If one can't have been bothered to read someone else's entire posting - no matter your position or conviction - then you have no right to reply. End of story.
    (PS: This is not directed at you, @masterBB. You just happened to mention it in your post - that's all.
    Last edited by NickMystre; 02-29-2012 at 01:26 PM.
    Ciao
    NM

  19. #19
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    Quote Originally Posted by NickMystre View Post
    @masterBB: No offense, Sir! My comment was intended as a joke - my attempt to inject a little humour. Sorry -> I mis-judged just how serious this is taken.

    And for the record - I completely agree with you and the extending / giving of credit where appropriate. Again - sorry.
    Wasn't intended like that. I'm never mad or offended. But there were some comments that were off a bit, you were the last person that replied so I quote your post. I'm more the always happy cuddle bear kind of guy.
    Working on: Tithe Farmer

  20. #20
    Join Date
    Nov 2011
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by masterBB View Post
    No it's not. You aren't allowed to copy anything from anyone. Everything script posted on this forum is copyrighted by the person who submits it as first, unless said otherwise by that person. Opensource means you may read it, learn from it and post suggestions. It doesn't mean you can cut the stuff out you need and put it in your script. We do allow SRL methods to be copied in your script outside the srl include if you add credits. If you want to use keepBotting his function and procedures you need to ask him if you may use it. He then decides if it's necessary to give credits. Opensource is not free as in free beer...

    Too long didn't read: It's copyrighted!
    Well like i said before he never said no one can use it. I ALSO NEVER CLAIMED THAT THE SCRIPT WAS MINE. Asking a simple question doesn't mean its plagiarism. How else would people learn if they dont put the whole question up. If i planned to release a finally copy i would give him credit, once i figured out the Proper banking Procedure that i wanted. And like you said its open source i was trying to teach my self on how to make the script do what i wanted it to do.

  21. #21
    Join Date
    Feb 2007
    Location
    Lux Aeterna
    Posts
    171
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by masterBB View Post
    No it's not. You aren't allowed to copy anything from anyone. Everything script posted on this forum is copyrighted by the person who submits it as first, unless said otherwise by that person
    You have to copy the scripts here to even use them.
    Why are you guys picking on this guy, exactly? <-------------------
    Why are you guys spouting childish plagiarism and theft claims?

    You guys honestly don't sound like you know what plagiarism or copyrighting is.
    Take it to court, and I will believe you. This guy might want to try posting in the help section. God forbid he shares this plagiarized script with me on MSN, or else I will give him a plagiarism warning. And take him to court.

    Anyway.. you're not supposed to post other peoples' scripts on the forums without their permission. I suppose that applies if you made modifications to their scripts.
    By now I would have committed suicide if I were this guy. Are you guys trying to kill him? Do you want to be tried for murderer, assisted suicide, or manslaughter? God you people are so funny.

    Goku: There are some video tutorials you might like to watch. YoHoJo's videos, and a bunch of short scar tutorials made by some guy you can find by visiting a scar website or searching youtube.

    P.S. If any of you guys use my ideas without permission I will do something like.. scream plagiarism.
    Triggers..

  22. #22
    Join Date
    Jun 2006
    Location
    N Wales
    Posts
    558
    Mentioned
    2 Post(s)
    Quoted
    56 Post(s)

    Default

    perhaps its something as simple as the colors you have chosen. Try using different ones or autocolor you state in your first post your using ACA but I can't see it in the script?

    E: just read through this thread I think you guys have been a bit tough on this guy, don't forget you sell this place as a learning community who cares if he is using someone else's script to improve his knowledge, I'm sure you all did that to begin with.

  23. #23
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    Quote Originally Posted by Goku123 View Post
    Well like i said before he never said no one can use it. I ALSO NEVER CLAIMED THAT THE SCRIPT WAS MINE. Asking a simple question doesn't mean its plagiarism. How else would people learn if they dont put the whole question up. If i planned to release a finally copy i would give him credit, once i figured out the Proper banking Procedure that i wanted. And like you said its open source i was trying to teach my self on how to make the script do what i wanted it to do.
    I won't continue the discussion of plagiarism in your thread. The point has been made by a moderator(Markus) and a few other users. Plagiarism like you did is not a big deal here, and I do not support the way other users reacted on this case. It was never my intention to attack your post, but I tried to give more information on the laws of the internet copyright handled by most, no all, countries. My apologies if it gave you the feeling that I attacked you by my post.

    For people who still got problems believing that this piece of content got copyright by KeepBotting I point you towards the Berne copyright convention. These are the laws that apply on this forum. Every piece of content, can range from art to scripts, got copyright protection. Using these piece of content without permission of the original author is deemed copyright violation.

    On topic:
    I don't see the use of auto color aid too. If you want to debug your colors try this little script:
    Simba Code:
    program new;
    {$DEFINE SMART}
    {.include srl/srl.simba}
    {.include srl/srl/misc/paintsmart.simba}

    const
      color = 10572865; // color you want to debug
      tolerance = 10;   // the tolerance you want to use

    var
      Points:TPointArray;

    begin
      Smart_Server := 39;
      Smart_Members := False;
      Smart_Signed := False;
      Smart_SuperDetail := False;

      SetupSRL;
      SMART_SetupDebug();
      FindColorsTolerance(Points,color,MSX1,MSY1,MSX2,MSY2,tolerance);
      SMART_DebugTPA(True,Points);
    end.
    Working on: Tithe Farmer

  24. #24
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Markus View Post
    Official warning for plagiarism is given.
    Thank you.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  25. #25
    Join Date
    Nov 2011
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by keepbotting View Post
    thank you.
    (Vulgar display removed)
    Last edited by BraK; 03-01-2012 at 09:44 PM.

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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