Results 1 to 3 of 3

Thread: dropping logs with osr Not p07 include

  1. #1
    Join Date
    Dec 2011
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    26 Post(s)

    Default dropping logs with osr Not p07 include

    My script cuts the trees fine but I cant get it to drop logs. ive tried

    Procedure Droplogs;
    Begin
    if (InvFull) then
    DropAllExcept([1]);
    end;


    any ideas?

  2. #2
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    is that the whole program? you might not be calling the procedure

  3. #3
    Join Date
    Dec 2011
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    26 Post(s)

    Default

    found it. Had to add loop in the might apply for membership in a few weeks. want to get some more scripts under my belt Got a working willow powerchopper in 07.

    part of my script:

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

    begin
    SetUpSRL;
    ActivateClient;
    DeclarePlayer;
    LoginPlayer;
    repeat
    ChopTree;
    if InvFull Then
    DropLogs;
    until(false);

    Antiban;

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
  •