Results 1 to 6 of 6

Thread: Checks and balances

  1. #1
    Join Date
    Mar 2008
    Posts
    1,492
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Checks and balances

    okay, instead of wait i have been trying to use

    SCAR Code:
    begin
    If ShopScreen=true then
    if FindColorSpiralTolerance(x,y,(item color),259,102,286,121,15) then
    mouse(x,y,5,5,false);
    ChooseOption('X');
    wait (500+random(400))
    typesend('33')
    end;

    but it isnt working, if you dont understand what i am trying to do is make sure that the shop window is open before i try to buy my item.

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

    Default

    a wait first?

    Use :
    SCAR Code:
    While not ShopSreen do wait(100);
    then you continue with the buying.


  3. #3
    Join Date
    Mar 2008
    Posts
    1,492
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ty =D rep+

  4. #4
    Join Date
    Mar 2008
    Location
    Indiana
    Posts
    192
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Don't forget your standards
    SCAR Code:
    begin
      if ShopScreen = true then
        if FindColorSpiralTolerance( x, y,(itemcolor),259,102,286,121,15) then
          mouse(x,y,5,5,false);
          ChooseOption('X');
          wait (500+random(400))
          typesend('33')
    end;

    @ Below
    Opps forgot that.... (There was that little sound of something in the back of my head.)

  5. #5
    Join Date
    Aug 2007
    Location
    Emo-land
    Posts
    1,109
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Theres no point having standards if the fixed ones still don't work lmfao:

    SCAR Code:
    begin
      While Not(ShopScreen) do
        Wait(100 + random(50));
      if ShopScreen then
        if FindColorSpiralTolerance( x, y,(itemcolor),259,102,286,121,15) then
        BEGIN//!!!
          mouse(x,y,5,5,false);
          ChooseOption('X');
          wait (500+random(400))
          typesend('33')
        end;
    end;

  6. #6
    Join Date
    May 2007
    Location
    in a pineapple under the sea
    Posts
    1,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by sirlaughsalot View Post
    okay, instead of wait i have been trying to use

    SCAR Code:
    begin
    If ShopScreen=true then
    if FindColorSpiralTolerance(x,y,(item color),259,102,286,121,15) then
    mouse(x,y,5,5,false);
    ChooseOption('X');
    wait (500+random(400))
    typesend('33')
    end;

    but it isnt working, if you dont understand what i am trying to do is make sure that the shop window is open before i try to buy my item.
    SCAR Code:
    begin
      If ShopScreen then
      begin
        if FindColorSpiralTolerance(x,y,(item color),259,102,286,121,15) then
        begin
          mouse(x,y,5,5,false);
          ChooseOption('X');
          wait (500+random(400))
          typesend('33');
        end;
      end;
    end;
    [SIZE="4"][CENTER][URL="http://www.youtube.com/watch?v=5YsGJz3j4os"]LOL u mad bro?[/URL][/CENTER][/SIZE]

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
  •