Any shop buyer

Discussion in 'Outdated RS Scripts' started by EL_TYCHO, May 9, 2007.

Any shop buyer
  1. Unread #1 - May 9, 2007 at 11:41 AM
  2. EL_TYCHO
    Joined:
    Feb 3, 2007
    Posts:
    47
    Referrals:
    0
    Sythe Gold:
    0

    EL_TYCHO Member

    Any shop buyer

    Ok, this is very easy script, it buys in whatever shop you want cuz every buy screen is the same size, just specify the runescape screen, trade the shop and press play, it will buy the amount that you need, it can be used to buy runes, arrows etc, anything thats stackable. It has no worldswitch.
    I think its the best that you use it on SCAR 2.03 cuz I havent tested it on the 3.05Divi. Have fun :cool:

    Code:
    program Anyshopbuyer;
    
    {Run this in ANY shop with the trade screen open, the stuff you are
    going to buy must be stackable tough, just fill in line 11 and 12 and
    press play!}
    {.include SRL/SRL.scar}
    {.include SRL/SRL/Misc/Amount.scar}
    
    var
    Bought : Integer;
    
    const
    Slot = '2'; //Wich slot is it in? It counts from left to right so first 1-8 then 9-16, then 17-24 etc
    AmountToBuy = 4000; //How many do you want to buy?
    
     procedure Buyer;
      begin
    
       if(Slot = '1')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(85, 76, 104, 96, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '2')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(128, 74, 151, 94, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '3')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(176, 77, 198, 89, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '4')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(223, 77, 246, 93, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '5')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(269, 78, 292, 93, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '6')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(317, 76, 338, 95, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
          if(Slot = '7')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(369, 77, 384, 94, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '8')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(411, 75, 440, 91, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '9')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(82, 123, 107, 144, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '10')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(130, 122, 152, 142, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '11')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(175, 122, 201, 142, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '12')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(223, 122, 248, 143, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '13')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(270, 121, 294, 143, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '14')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(317, 122, 338, 140, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
          if(Slot = '15')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(360, 122, 384, 136, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '16')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(409, 119, 435, 142, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '17')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(81, 165, 105, 189, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '18')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(128, 166, 153, 185, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '19')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(175, 166, 201, 189, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '20')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(220, 166, 247, 190, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '21')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(269, 166, 294, 190, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '22')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(317, 165, 340, 188, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '23')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(363, 167, 386, 190, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '24')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(409, 163, 247, 186, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '25')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(80, 212, 109, 237, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '26')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(128, 213, 153, 236, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '27')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(176, 211, 201, 238, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '28')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(222, 212, 248, 235, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '29')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(268, 211, 294, 237, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '30')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(316, 210, 345, 236, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '31')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(367, 214, 392, 234, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '32')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(409, 213, 436, 236, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '33')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(81, 257, 109, 283, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '34')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(128, 263, 156, 280, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '35')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(176, 263, 200, 281, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '36')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(222, 258, 248, 284, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '37')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(269, 259, 295, 285, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '38')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(319, 266, 343, 281, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '39')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(363, 258, 390, 285, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Slot = '40')then
        begin
         repeat
          Wait(500 + Random(500));
          MouseBox(409, 265, 433, 284, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
       if(Bought >= AmountToBuy) or (InChat('out of stock.')) or
       (InChat('have enough coins.'))then
        begin
         MouseBox(480, 35, 490, 45, 1);
         FindNormalRandoms;
         Wait(100);
         FindTalk;
         Wait(100);
         FindNormalRandoms;
         Wait(100);
         FindTalk;
         Wait(100);
         Logout;
         TerminateScript;
        end;
      end;
    
    begin
    SetupSRL;
     Buyer;
    end.
    
     
  3. Unread #2 - May 9, 2007 at 12:03 PM
  4. the scar noob
    Joined:
    Jan 21, 2007
    Posts:
    620
    Referrals:
    0
    Sythe Gold:
    0

    the scar noob Forum Addict

    Any shop buyer

    nice work, but try using case statements :p
     
  5. Unread #3 - May 9, 2007 at 1:46 PM
  6. 17th Alley
    Joined:
    Jan 25, 2007
    Posts:
    290
    Referrals:
    0
    Sythe Gold:
    0

    17th Alley Forum Addict

    Any shop buyer

    Nice work, try adding some randoms and anti-ban features. The rest is GREAT!!!
     
  7. Unread #4 - May 9, 2007 at 2:17 PM
  8. EL_TYCHO
    Joined:
    Feb 3, 2007
    Posts:
    47
    Referrals:
    0
    Sythe Gold:
    0

    EL_TYCHO Member

    Any shop buyer

    Ty :)
    -Ill try and check out the case of

    - do you meen randoms as in the gernie or random clicks?
    and ill see for an antiban :)
     
  9. Unread #5 - May 9, 2007 at 2:49 PM
  10. EL_TYCHO
    Joined:
    Feb 3, 2007
    Posts:
    47
    Referrals:
    0
    Sythe Gold:
    0

    EL_TYCHO Member

    Any shop buyer

    Well I tried to ad case of in it, but got an error so still use the script above :)

    but can anyone help me with this?
    I get the error : Line 61: [Error] (18347:24): colon (':') expected in script
    Code:
    program Anyshopbuyer;
    
    {Run this in ANY shop with the trade screen open, the stuff you are
    going to buy must be stackable tough, just fill in line 11 and 12 and
    press play!}
    {.include SRL/SRL.scar}
    {.include SRL/SRL/Misc/Amount.scar}
    
    var
    Bought : Integer;
    
    const
    Slot = '3'; //Wich slot is it in? It counts from left to right so first 1-8 then 9-16, then 17-24 etc
    AmountToBuy = 4000; //How many do you want to buy?
    
     procedure Buyer;
      begin
        repeat
          Wait(500 + Random(500));
          Case Slot Of
          1: MouseBox(85, 76, 104, 96, 2);
          2: MouseBox(128, 74, 151, 94, 2);
          3: MouseBox(176, 77, 198, 89, 2);
          4: MouseBox(223, 77, 246, 93, 2);
          5: MouseBox(269, 78, 292, 93, 2);
          6: MouseBox(317, 76, 338, 95, 2);
          7: MouseBox(369, 77, 384, 94, 2);
          8: MouseBox(411, 75, 440, 91, 2);
          9: MouseBox(82, 123, 107, 144, 2);
          10: MouseBox(130, 122, 152, 142, 2);
          11: MouseBox(175, 122, 201, 142, 2);
          12: MouseBox(223, 122, 248, 143, 2);
          13: MouseBox(270, 121, 294, 143, 2);
          14: MouseBox(317, 122, 338, 140, 2);
          15: MouseBox(360, 122, 384, 136, 2);
          16: MouseBox(409, 119, 435, 142, 2);
          17: MouseBox(81, 165, 105, 189, 2);
          18: MouseBox(128, 166, 153, 185, 2);
          19: MouseBox(175, 166, 201, 189, 2);
          20: MouseBox(220, 166, 247, 190, 2);
          21: MouseBox(269, 166, 294, 190, 2);
          22: MouseBox(317, 165, 340, 188, 2);
          23: MouseBox(363, 167, 386, 190, 2);
          24: MouseBox(409, 163, 247, 186, 2);
          25: MouseBox(80, 212, 109, 237, 2);
          26: MouseBox(128, 213, 153, 236, 2);
          27: MouseBox(176, 211, 201, 238, 2);
          28: MouseBox(222, 212, 248, 235, 2);
          29: MouseBox(268, 211, 294, 237, 2);
          30: MouseBox(316, 210, 345, 236, 2);
          31: MouseBox(367, 214, 392, 234, 2);
          32: MouseBox(409, 213, 436, 236, 2);
          33: MouseBox(81, 257, 109, 283, 2);
          34: MouseBox(128, 263, 156, 280, 2);
          35: MouseBox(176, 263, 200, 281, 2);
          36: MouseBox(222, 258, 248, 284, 2);
          37: MouseBox(269, 259, 295, 285, 2);
          38: MouseBox(319, 266, 343, 281, 2);
          39: MouseBox(363, 258, 390, 285, 2);
          40: MouseBox(409, 265, 433, 284, 2);
          Wait(500 + Random(100));
          ChooseOption(x, y, '10');
           Bought := Bought + 10;
         until(Bought >= AmountToBuy) or (InChat('out of stock.')) or
         (InChat('have enough coins.'));
        end;
    
    
    
     if(Bought >= AmountToBuy) or (InChat('out of stock.')) or
       (InChat('have enough coins.'))then
        begin
         MouseBox(480, 35, 490, 45, 1);
         FindNormalRandoms;
         Wait(100);
         FindTalk;
         Wait(100);
         FindNormalRandoms;
         Wait(100);
         FindTalk;
         Wait(100);
         Logout;
         TerminateScript;
        end;
      end;
    
    begin
    SetupSRL;
     Buyer;
    end.
    
     
  11. Unread #6 - May 10, 2007 at 1:57 AM
  12. Jukka
    Joined:
    Nov 23, 2005
    Posts:
    244
    Referrals:
    0
    Sythe Gold:
    0

    Jukka Active Member

    Any shop buyer

    add a END;


    Here:

    40: MouseBox(409, 265, 433, 284, 2);
    end;
    Wait(500 + Random(100));

    and there are no randoms when buying so its not needed
     
  13. Unread #7 - May 10, 2007 at 10:12 AM
  14. EL_TYCHO
    Joined:
    Feb 3, 2007
    Posts:
    47
    Referrals:
    0
    Sythe Gold:
    0

    EL_TYCHO Member

    Any shop buyer

    Wel, I allready tried that, but then I get another error:
    Line 70: [Error] (15027:1): 'BEGIN' expected

    Yeah I allready knew that but 17th alley asked so I didnt knew what he ment cuz I tried to add a lot of randoms in clicking etc.
    So it will take a few days for V2 to come out ;)
     
  15. Unread #8 - May 10, 2007 at 10:29 AM
  16. the scar noob
    Joined:
    Jan 21, 2007
    Posts:
    620
    Referrals:
    0
    Sythe Gold:
    0

    the scar noob Forum Addict

    Any shop buyer

    you see, it slows down the lines, isn't it? :D
     
  17. Unread #9 - May 10, 2007 at 12:59 PM
  18. EL_TYCHO
    Joined:
    Feb 3, 2007
    Posts:
    47
    Referrals:
    0
    Sythe Gold:
    0

    EL_TYCHO Member

    Any shop buyer

    Yeah :p
    But I need to get it fixed now so when its finished, it will be shorter ;)
     
  19. Unread #10 - May 10, 2007 at 6:43 PM
  20. runekingex
    Joined:
    Mar 17, 2007
    Posts:
    26
    Referrals:
    0
    Sythe Gold:
    0

    runekingex Member
    Banned

    Any shop buyer

    <bump>
     
  21. Unread #11 - May 11, 2007 at 12:12 PM
  22. Aphonix
    Joined:
    May 6, 2007
    Posts:
    209
    Referrals:
    0
    Sythe Gold:
    0

    Aphonix Active Member

    Any shop buyer

    The final <Bump> I have found. This guy needs banning or something
     
  23. Unread #12 - May 11, 2007 at 12:30 PM
  24. EL_TYCHO
    Joined:
    Feb 3, 2007
    Posts:
    47
    Referrals:
    0
    Sythe Gold:
    0

    EL_TYCHO Member

    Any shop buyer

    ?? I dont know why, Im gratefull for my free bump, thanks ;)
     
  25. Unread #13 - May 11, 2007 at 1:41 PM
  26. Aphonix
    Joined:
    May 6, 2007
    Posts:
    209
    Referrals:
    0
    Sythe Gold:
    0

    Aphonix Active Member

    Any shop buyer

    Please dont encourage it thanks.
     
  27. Unread #14 - May 11, 2007 at 1:46 PM
  28. EL_TYCHO
    Joined:
    Feb 3, 2007
    Posts:
    47
    Referrals:
    0
    Sythe Gold:
    0

    EL_TYCHO Member

    Any shop buyer

    BTW why r u spamming this topic? For as long as I know, you aint a mod.
     
  29. Unread #15 - May 11, 2007 at 2:49 PM
  30. pro_spider13
    Joined:
    Apr 2, 2007
    Posts:
    325
    Referrals:
    0
    Sythe Gold:
    0

    pro_spider13 Forum Addict

    Any shop buyer

    haha lol he is right
     
  31. Unread #16 - May 11, 2007 at 2:51 PM
  32. Aphonix
    Joined:
    May 6, 2007
    Posts:
    209
    Referrals:
    0
    Sythe Gold:
    0

    Aphonix Active Member

    Any shop buyer

    Since there are no mods that are botherd, i thought i would help em out a bit.
     
  33. Unread #17 - May 11, 2007 at 3:22 PM
  34. EL_TYCHO
    Joined:
    Feb 3, 2007
    Posts:
    47
    Referrals:
    0
    Sythe Gold:
    0

    EL_TYCHO Member

    Any shop buyer

    then just report his post and stop spamming
     
  35. Unread #18 - May 15, 2007 at 3:57 PM
  36. EL_TYCHO
    Joined:
    Feb 3, 2007
    Posts:
    47
    Referrals:
    0
    Sythe Gold:
    0

    EL_TYCHO Member

    Any shop buyer

    bumpety
     
  37. Unread #19 - May 15, 2007 at 7:11 PM
  38. 9pyro9mage9
    Joined:
    Apr 3, 2007
    Posts:
    241
    Referrals:
    0
    Sythe Gold:
    0

    9pyro9mage9 Active Member
    $5 USD Donor

    Any shop buyer

    lol you wouldnt need antirandoms cuz ur in a shop screen but other antibans would be good like random clicks very good script btw
     
  39. Unread #20 - May 16, 2007 at 11:56 AM
  40. 9pyro9mage9
    Joined:
    Apr 3, 2007
    Posts:
    241
    Referrals:
    0
    Sythe Gold:
    0

    9pyro9mage9 Active Member
    $5 USD Donor

    Any shop buyer

    awsome helped me buy bronze arrows
     
< [RS2][SLR]SmAcKmE Power Wcer[SRL][RS2] | Almost Undectable Auto Alcher >

Users viewing this thread
1 guest


 
 
Adblock breaks this site