Question for a chest bot

08/11/2014 11:30 gameover999#1
Hello. I've got the RShinybot. If I want that it collects chest I must change the code of the shiny from 0 to the chest color number. If i start it, it clicks the shinyhunter at the minimap. Is there any solution or anything to deactivate the shinyhunter at the scar script?
08/11/2014 15:39 Moneypulation#2
Well this bot is made to collect shinies. So when it sees a yellow point on the minimap, it will click on it. You would have to add a function to ignore that if it's a glitter. But if you don't have any idea of scar programing, you can't deactivate it then
08/11/2014 16:13 jonmikeltxu#3
Quote:
Originally Posted by moneypulation View Post
Well this bot is made to collect shinies. So when it sees a yellow point on the minimap, it will click on it. You would have to add a function to ignore that if it's a glitter. But if you don't have any idea of scar programing, you can't deactivate it then
It's not need to add a function. Simply delete this procedure:

Code:
procedure ShinyMMOnCheck;
     begin
       if (DEBUGMODE = true) then WriteLn('DB (' + FormatDateTime('DD.MM.YYYY HH:MM:SS', now) + '): PROCEDURE: ShinyMMOnCheck - START');
            if (FindBitmap(ShinyHunterOnBMP,x,y)=false) then
            begin
                 if (DEBUGMODE = true) then WriteLn('DB (' + FormatDateTime('DD.MM.YYYY HH:MM:SS', now) + '): ShinyHunter was turned off - turning on');
                x:=mmx1+48;
                y:=mmy1+105;
                if (DEBUGMODE = true) then WriteLn('DB (' + FormatDateTime('DD.MM.YYYY HH:MM:SS', now) + '): Click Type: Shiny Hunter');
                click(x,y);
            end;
       if (DEBUGMODE = true) then WriteLn('DB (' + FormatDateTime('DD.MM.YYYY HH:MM:SS', now) + '): PROCEDURE: ShinyMMOnCheck - END');
     end;
And search in the final of script, in the boolean this and delete:

Code:
ShinyMMOnCheck;
So, the bot wont put the ShinyMiniMap ON

regards
08/11/2014 16:18 gameover999#4
ok thx i will try it