Results 1 to 6 of 6

Thread: Best Finding Method

  1. #1
    Join Date
    Feb 2009
    Location
    UK
    Posts
    89
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Best Finding Method

    What are the best non-reflection methods for:
    • Checking inventory for certain item?
    • Finding certain stairs?
    • Checking if door is locked?
    • Map walking?
    • Finding objects such as spinning wheel?


    Thanks alot, I want to know which would be the best methods as I am about to create my first script and don't want to waste my time coding something which will need to be rewritten.

  2. #2
    Join Date
    Mar 2009
    Location
    Illinois
    Posts
    292
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I don't know if this is the best method for
    Checking inventory for certain item?
    but this is what I like to use.
    SCAR Code:
    Function ItemInInv : Boolean;
    Begin
      If FindDTM([item here], x, y, MIx1, MIy1, MIx2, MIy2) Then
        Begin
         Result:=True;
        End;
    End;
    I'm not sure if thats the best but thats what I use, also you'd have to make the dtm.

  3. #3
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If this is your first script, then you should start from the beginning. Start with an autotyper, a powerminer, and then you could start making something more elaborated.


  4. #4
    Join Date
    Oct 2007
    Posts
    742
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Checking inventory for certain item?: DTMs/Color checking with TPAs.
    Finding certain stairs?: TPAs/Color.
    Checking if door is locked?: TPAs/Color.
    Map walking?: DDTMs/DTMs/Autocolor/Symbols.
    Finding objects such as spinning wheel?: TPAs/Color.

    If you dont know any of the above, i suggest reading some good tutorials in the Tutorial Island section of the forums.
    Woot woot.

  5. #5
    Join Date
    Feb 2009
    Location
    UK
    Posts
    89
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Ultra View Post
    Checking inventory for certain item?: DTMs/Color checking with TPAs.
    Finding certain stairs?: TPAs/Color.
    Checking if door is locked?: TPAs/Color.
    Map walking?: DDTMs/DTMs/Autocolor/Symbols.
    Finding objects such as spinning wheel?: TPAs/Color.

    If you dont know any of the above, i suggest reading some good tutorials in the Tutorial Island section of the forums.
    Tyvm, this is excactly what I was wanting to know.

    It's time to start reading some tutorials

  6. #6
    Join Date
    Dec 2006
    Location
    Canada, BC
    Posts
    728
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Cazax View Post
    If this is your first script, then you should start from the beginning. Start with an autotyper, a powerminer, and then you could start making something more elaborated.
    dont be so discouraging. if he is feeling the creativity then let him run. besides the worst that can happen is failure which only shows you where you need to work harder :P
    Lance. Da. Pants.

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
  •