Results 1 to 3 of 3

Thread: Finding Bank and Shop

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

    Default Finding Bank and Shop

    Okay so this is for one of my scripts, but i cannot figure out how to make it find the bank more regularly because it is a small bank and the icon goes out of it... anyway if you wanna help me with that pm me, otherwise the real question is i have been having difficulty with finding a shop store owner, due to colors around being too similar, so i made this procedure REALLY specific lol, but now it wont click ;_;
    SCAR Code:
    Procedure TradeWithDaOgre;
    begin
    Counter:=0
    Repeat
      Counter:=Counter+1
      if not(FindObjCustom(x,y,['hargurr'],[ChargurrDress,ChargurrHat,ChargurrHair],5)) then
      Getuptext;
      If IsUpText('talk-to chargurr') then
      Mouse(x,y,4,0,False);
      Wait(500+random(700))
      ChooseOption('Trade')
      Wait (500)
    Until (ShopScreen) or (Counter>=10);
    if counter>=10 then
    TerminateScript;
    end;
    and yes it does need standards, just too lazy atm

  2. #2
    Join Date
    Jan 2008
    Location
    Stanford, CA
    Posts
    329
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    make sure that if u wanna get uptext ud have to have ur mouse HOVERING OVER the item so u would do

    SCAR Code:
    Procedure TradeWithDaOgre;
    begin
    Repeat
      Counter:=Counter+1; //counter is already 0 so u dont needa do counter:=0;
    if (FindObjCustom(x,y,['hargurr'],[ChargurrDress,ChargurrHat,ChargurrHair],5)) then
      begin
        MMouse(x,y,1,1);
        If IsUpText('Talk-To Chargurr') then
       begin
         Mouse(x,y,4,0,False);
         Wait(500+random(700))
        ChooseOption('Trade')
        Wait (500);
       end;
      end;
    Until (BankScreen) or (Counter>=10);//not shop screen since this is a bank
    if counter>=10 then
    TerminateScript;
    end;

    SORRY if i made errors i really have to go
    OH and Uptext IS CASE SENSITIVE ( i think? lol) well it is for CHoose Option anywho.

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

    Default

    Quote Originally Posted by freakymonkey View Post
    make sure that if u wanna get uptext ud have to have ur mouse HOVERING OVER the item so u would do

    SCAR Code:
    Procedure TradeWithDaOgre;
    begin
    Counter:=0
    Repeat
      Counter:=Counter+1
    if (FindObjCustom(x,y,['hargurr'],[ChargurrDress,ChargurrHat,ChargurrHair],5)) then
      begin
        MMouse(x,y,1,1);
        If IsUpText('Talk-To Chargurr') then
       begin
         Mouse(x,y,4,0,False);
         Wait(500+random(700))
        ChooseOption('Trade')
        Wait (500);
       end;
      end;
    Until (ShopScreen) or (Counter>=10);
    if counter>=10 then
    TerminateScript;
    end;

    SORRY if i made errors i really have to go
    OH and Uptext IS CASE SENSITIVE ( i think? lol) well it is for CHoose Option anywho.
    0_0 i dont think its ever happened before, a question being answered in the 1st post! WOW! anyway if someone wants to help me with the bank thing pm me =D and rep+ =D

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Finding the bank
    By sirlaughsalot in forum OSR Help
    Replies: 30
    Last Post: 05-09-2008, 07:48 AM
  2. Bank Finding Help!
    By faster789 in forum OSR Help
    Replies: 20
    Last Post: 04-06-2008, 01:25 AM
  3. help with bank finding
    By zenma in forum OSR Help
    Replies: 4
    Last Post: 09-08-2007, 12:08 PM
  4. need help with bank finding
    By del_signo in forum OSR Help
    Replies: 3
    Last Post: 04-12-2007, 03:29 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •