Results 1 to 8 of 8

Thread: More of a Check..

  1. #1
    Join Date
    Feb 2007
    Location
    South East England
    Posts
    2,906
    Mentioned
    2 Post(s)
    Quoted
    8 Post(s)

    Default More of a Check..

    I've gotten to the point where I think I should get some checking of my script in progress before I continue with it.

    This is it at the moment, any help on what to change, etc will be greatly appreciated!
    Jus' Lurkin'

  2. #2
    Join Date
    Sep 2007
    Posts
    415
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    looking over it..it looks very nice, but there are a few things
    in powerdrop function
    SCAR Code:
    Mouse(x, y, 4, 4, true);
    Mouse(x, y, 4, 4, true);
    ChooseOption('Drop');
    maybe i'm stupid, but i'm positive that won't work
    and also, i'm sure you can think up something better than findobjcustom for all your cutting procedures, no way it can be amazingly accurate
    Quote Originally Posted by That guy that wrote forefeathers
    <munklez>haha im too lazy, girls annoy me
    <munklez> they always wanna like, do stuff
    <munklez> and i just wanna program
    <munklez> and they always take all my money

  3. #3
    Join Date
    Feb 2008
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    something like that would work fine... not my coding... but it should give u some idea



    Procedure Drop;// By Timer150
    var
    i: Integer;
    ItemPoint: TPoint;
    begin
    GameTab(4);
    Wait(1000 + Random(500));
    for i := 1 to 28 do
    if (ExistsItem(i)) then
    begin
    ItemPoint := ItemCoords(i);
    MMouse(ItemPoint.x, ItemPoint.y, 5, 5);
    Wait(500 + Random(60));
    if IsUpText(Log) then
    begin
    Mouse(ItemPoint.x, ItemPoint.y, 5, 5, False);
    Wait(500 + Random(50));
    ChooseOption('rop');
    logs := logs + 1;
    ReportVars[0] := ReportVars[0] + 1;
    end;
    end;
    ArrangeInv;
    end;

  4. #4
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Permy, please use SCAR tags.

    ToF, only one of your three ways of dropping is correct.

    One of the invalid is trying to double click the item, that only puts the item to "use -mode" and back.

    Another one is you right click, select to use, then right click and select to drop, that puts it to "use -mode", and when you right click again you don't get the menu.

  5. #5
    Join Date
    Feb 2007
    Location
    South East England
    Posts
    2,906
    Mentioned
    2 Post(s)
    Quoted
    8 Post(s)

    Default

    Ah, I see. I should think up some more procedures then I guess.


    And is there any other way to Find the tree? If there is I will change it instantly :]
    Jus' Lurkin'

  6. #6
    Join Date
    Sep 2007
    Posts
    415
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you could always try TPAs for treefinding
    Quote Originally Posted by That guy that wrote forefeathers
    <munklez>haha im too lazy, girls annoy me
    <munklez> they always wanna like, do stuff
    <munklez> and i just wanna program
    <munklez> and they always take all my money

  7. #7
    Join Date
    Oct 2006
    Posts
    702
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    for dropping use dtms?

    torrent, mastaraymond made a great tut on tpas in tutorial island
    "For it is not what goes into your mouth that will defile you; rather, it is what comes out of your mouth that defiles you." - Jesus of Nazareth

  8. #8
    Join Date
    Feb 2007
    Location
    South East England
    Posts
    2,906
    Mentioned
    2 Post(s)
    Quoted
    8 Post(s)

    Default

    I did use DTM's for dropping.

    Ok, Im going to check out his tut.
    Jus' Lurkin'

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Check this out!
    By PwNZoRNooB in forum SRL Site Discussion
    Replies: 16
    Last Post: 05-04-2007, 12:06 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
  •