Results 1 to 3 of 3

Thread: plz help :(

  1. #1
    Join Date
    Apr 2007
    Posts
    166
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default plz help :(

    i have 2 questions

    1) in the top left hand corner in the screen you see stuff like "chop down oak / 2 more options"

    how do i make the script detect if a cetain word which comes up?

    2) how do i make my script keep checking somthing over and over again and if it finds it it will proceed to a different Procedure?


    i would really like it if somone could help many thx

  2. #2
    Join Date
    Aug 2007
    Location
    England
    Posts
    734
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    isUpText('Hello')
    does the writing in the top corner and it is case sensetive so be careful

    SCAR Code:
    repeat
    until(false)
    does the repeat

    so putting that together
    SCAR Code:
    repeat
    wait(100);
    until(isUpText('Hello'));

    This keeps waiting until it finds hello in the top corner...

    Please see the tutorials section for extra help
    The truth finally came out...


  3. #3
    Join Date
    Apr 2007
    Posts
    166
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

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
  •