Results 1 to 13 of 13

Thread: Is it me or is IsUpText not working...

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

    Default Is it me or is IsUpText not working...

    It isn't working... I use this:

    SCAR Code:
    'Net'

    as the uptext or

    SCAR Code:
    'ishi'

    and for some weird reason it decides to click at (0, 0) and move off the runescape screen... Please help.

    Cut em2 it
    Formerly known as Cut em2 it

  2. #2
    Join Date
    Nov 2007
    Location
    Nowhereville
    Posts
    1,155
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    SCAR Code:
    for i := 0 to b do
      begin
        MiddleTPAEx(FishingPointers[b], x, y);
        MMouse(x, y, 2, 2);
        if IsUpText('Net') then
        begin
          if HandleWhirl then Break;
          GetMousePos(x, y);
          Exit;
        end;
    Formerly known as Cut em2 it

  3. #3
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    It works for me in my Rimmington Miner.
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  4. #4
    Join Date
    Nov 2006
    Location
    'Pergamino, BA, Argentina';
    Posts
    473
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Are you using scar? i think that settargetdc might have something to do? Or am i totally wrong? lol.

  5. #5
    Join Date
    Nov 2007
    Location
    Nowhereville
    Posts
    1,155
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    im not using smart... Im using activate client.
    Formerly known as Cut em2 it

  6. #6
    Join Date
    Sep 2007
    Location
    Michigan
    Posts
    3,862
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Look in comment below-

    SCAR Code:
    for i := 0 to b do
      begin
        MiddleTPAEx(FishingPointers[b], x, y);
        MMouse(x, y, 2, 2);
        Wait(150+random(50));//Add a wait, you'll need it even if it doesn't fix it
        if IsUpText('Net') then
        begin
          if HandleWhirl then Break;
          GetMousePos(x, y);
          Exit;
        end;
    (Scripts outdated until I update for new SRL changes)
    AK Smelter & Crafter [SRL-Stats] - Fast Fighter [TUT] [SRL-Stats]
    If you PM me with a stupid question or one listed in FAQ I will NOT respond. -Narcle
    Summer = me busy, won't be around much.

  7. #7
    Join Date
    Nov 2007
    Location
    Nowhereville
    Posts
    1,155
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Found the problem. Color tolerance speed was 2. Testing with one right now.

    Cut em2 it
    Formerly known as Cut em2 it

  8. #8
    Join Date
    Sep 2007
    Location
    Michigan
    Posts
    3,862
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Cut em2 it View Post
    Found the problem. Color tolerance speed was 2. Testing with one right now.

    Cut em2 it
    Add that wait too, uptext doesn't show up instantaneously.
    (Scripts outdated until I update for new SRL changes)
    AK Smelter & Crafter [SRL-Stats] - Fast Fighter [TUT] [SRL-Stats]
    If you PM me with a stupid question or one listed in FAQ I will NOT respond. -Narcle
    Summer = me busy, won't be around much.

  9. #9
    Join Date
    Aug 2007
    Location
    in a random little world
    Posts
    5,778
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    as narcle said
    you need a wait because scar is too fast for rs
    by the time the Uptext is there you will have already called IsUptext
    and when you call IsUptext the Uptext wont be there(because like i said scar is too fast for rs)

    ~shut

    EDIT: didnt notice that you fixed it :s
    sorry

  10. #10
    Join Date
    Nov 2007
    Location
    Nowhereville
    Posts
    1,155
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    No it still failed I added narcle's thing and changed colortolerance speed please help
    Formerly known as Cut em2 it

  11. #11
    Join Date
    Sep 2007
    Location
    Michigan
    Posts
    3,862
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    It could be your "HandleWhirl" messing it up. Call GetMousePos before it.
    (Scripts outdated until I update for new SRL changes)
    AK Smelter & Crafter [SRL-Stats] - Fast Fighter [TUT] [SRL-Stats]
    If you PM me with a stupid question or one listed in FAQ I will NOT respond. -Narcle
    Summer = me busy, won't be around much.

  12. #12
    Join Date
    Nov 2007
    Location
    Nowhereville
    Posts
    1,155
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Okay thanks
    Formerly known as Cut em2 it

  13. #13
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    O dear, I got the fix!!!

    Sigh!
    SCAR Code:
    for i := 0 to b do
      begin
        If MiddleTPAEx(FishingPointers[b], x, y) Then // need an if statement
         Begin
          MMouse(x, y, 2, 2);
          Wait(150+random(50));//Add a wait, you'll need it even if it doesn't fix it
            if IsUpText('Net') then
              begin
               if HandleWhirl then Break;
                GetMousePos(x, y);
                Exit;
              end;
         end;


    Try that ^

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. isuptext ????????????????
    By havoc928 in forum OSR Help
    Replies: 5
    Last Post: 09-08-2007, 04:57 AM
  2. IsUpText not working??
    By gerauchert in forum OSR Help
    Replies: 0
    Last Post: 07-06-2007, 03:32 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
  •