Results 1 to 2 of 2

Thread: Burn willow logs

  1. #1
    Join Date
    Aug 2007
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Burn willow logs

    This is my 3rd script.. It is very basic and you have to be there to make sure nothing goes wrong... But ehre it is.. I burns 23 willow logs that you ahve in inventory granted nothing prevents you from lighting the fire. I use by the willos by the draynor bank. I have a spot where you can light 23 logs with no prob normally. Let me know what you think.

    program burnwillows;
    var
    x, y, loopnum: Integer;
    begin
    loopnum:= 0;
    repeat
    //click on matches 629, 360(I put them in the second spot over 3rd spot down because they are sort of in the middle)
    loopnum:= loopnum + 1;
    MoveMouseCC(629, 360, 2, 9, 3, 2);
    Wait(RandomRange(105, 135));
    ClickMouseBox(622, 354, 635, 366, True);
    Wait(RandomRange(90, 110));

    //click on log
    //invantory coordinates 570, 233 740, 485
    if(FindColorTolerance(x, y, 1326148, 570, 233, 740, 485, 5
    ))then//found log in invantory
    begin
    MoveMouseCC(x, y+8, 2, 9, 3, 2); //MoveMouseCC(x, y, range, segments, pcount, delay);
    Wait(RandomRange(125, 160));
    ClickMouseBox(x-2, y+6, x+2, y+10, True);
    end
    else
    begin
    Wait(RandomRange(500, 1000));
    Writeln('logs not found');
    break;
    end

    until(loopnum > 22)
    end.

  2. #2
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Hmm...this looks the same as your Clay Softener...
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Burn Ps2 games without Chip
    By StrikerX in forum Gaming
    Replies: 16
    Last Post: 09-13-2009, 05:00 AM
  2. 1st script: CuT and BuRn 0.55 Alpha
    By lefamaster in forum First Scripts
    Replies: 44
    Last Post: 06-12-2008, 09:32 AM
  3. How to burn .cue/.bin images on one cd.
    By chitin in forum Computer Help and Tutorials
    Replies: 5
    Last Post: 01-29-2008, 01:19 AM
  4. Selling 16k Willow Logs - 28gp Each
    By Johura in forum General Marketplace
    Replies: 0
    Last Post: 10-05-2007, 05:54 AM

Posting Permissions

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