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.