Results 1 to 5 of 5

Thread: Draynor Dead Powerchopper

  1. #1
    Join Date
    Jun 2012
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Draynor Dead Powerchopper

    So... I'm REALLY new at this all, and i want to get into making scripts. I followed Griff's guide HERE and made my basic woodcutter but changed it up so it would cut Dead Trees north of Draynor and drop them. Basic powerchopper, right? I'm not sure if this is the right place to post this, but I'm just looking for some constructive help. I've got the basics of creating the script, but i need help adding things such as walking, banking and making the antiban a little less sporadic.

    Bugs from what I've tested:

    • Camera turns a lot more than it should
    • Has problems finding the trees sometimes


    I would like to make it bank in the future at the Draynor bank, but for now I would just like to make it a little more dependable and accurate.

    I couldn't get the attachment to work so the download link is here:
    http://www.mediafire.com/?hx322sfucxhw296

    Simba Code:
    Program New;
    {$DEFINE SMART}
    {$i srl/srl.simba}



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



        Players[0].Name := '';
        Players[0].Pass := '';
        Players[0].Nick := '';
        Players[0].Active:= True;
    end;

    Procedure AntiBan;
      begin
       if(not(LoggedIn))then
       Exit;
       FindNormalRandoms;
       case Random(12) of
       0:
        Begin
         HoverSkill('Woodcutting', false);
         wait(1800+Random(250));
        End;
         1: PickUpMouse;
         2:
        Begin
         MakeCompass('N');
         wait(82+random(45));
         MakeCompass('S');
         wait(92+random(32));
         MakeCompass('N');
         FindNormalRandoms;
        End;
       End;
      End;

    Procedure Drop_All;
    var i: integer;
    begin
      for i:= 0 to 2 do
      begin
        DropPattern(Random(2) + 1);
        if InvCount = 0 then
          break;
      end;
    end;

    Procedure ChopTree;
    var x,y: integer;
      Begin
       Repeat
       FindNormalRandoms;
       if FindObj(x,y,'hop',856849, 15) then
        Mouse(x,y,2,2, false);
        ChooseOption('hop');
         Repeat
          Wait(800+random(250));
          AntiBan;
         Until not IsUpText('ead') or (InvFull);
        Until(InvFull);
        Drop_All;
        ChopTree;
      End;





    begin
      SetUpSRL;
      ActivateClient;
      DeclarePlayers;
      LoginPlayer;
      ChopTree;
      FindNormalRandoms;
      Drop_All;
    end.
    Last edited by hamon181; 06-09-2012 at 03:16 PM. Reason: Put the script on post.

  2. #2
    Join Date
    Dec 2011
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it wont evrn download haha

  3. #3
    Join Date
    Jan 2012
    Location
    Billingham
    Posts
    171
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Put your script (Copy and paste) between .

    I'm also new.

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

    Default

    Try using ACA instead of FindObj, it tends to fail alot. Look up YoHoJo ACA tut on youtube

  5. #5
    Join Date
    Jul 2008
    Location
    Poland
    Posts
    79
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You can use SPS for walking, a great tool that almost never failed me

    http://villavu.com/forum/showthread.php?t=71461

    Good tut how to make a route. As for banking, a really good tut on almost every basic thing along with banking.

    http://villavu.com/forum/showthread.php?t=81428

    Cheers and good luck on scripting man!
    "Egoist: person, who cares more about himself rather then me." J.Tuwim

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
  •