//////////////////////////////////////////////////////////////////////////// //------------------------FireMaker By Sapmangat--------------------------// // NOTE THIS SCRIPT DOES NOT // // TAKE LOGS FROM BANK IT CUTS WOOD AND BURNS IT // //////////////////////////////////////////////////////////////////////////// //-----------------------This script is copy right------------------------// // Enjoy! // //////////////////////////////////////////////////////////////////////////// //-------------------------------SET UP-----------------------------------// // //Please set up lines 102 and 110 to the waiting period which suites you // // //////////////////////////////////////////////////////////////////////////// program SmFireMaker; {.include Si.txt} {-----Setup-----} const logcolor=; //set the logcolor in your inventory const treecolor=;// set the treecolor you would like to chop down {---Dont Touch---} const tinder=9474203; {------End------} procedure FindMiscRandoms; var ax,ay:integer; begin if(FindColorSpiral(ax,ay,786423,10,350,150,433))or (FindColorSpiral(ax,ay,10658466,10,350,150,433))then begin logout; Writeln('Mod') end; if(FindColor(ax,ay,11503238,10,350,479,433))then begin logout; Writeln('Mime') end; if(GetColor(460,426)=0)and(GetColor(277,416)=0)and(GetColor(220,425)=0)or (GetColor(502,305)=0)and(GetColor(379,43)=0)then begin TakeScreen('Maze',1); logout; end; end; procedure TalkToRand1; var c:integer; begin repeat c:=c+1; if(FindColorSpiral(x,y,16711680,5,345,510,465))and(not(GetColor(20,434)=0))then begin Mouse(x,y,50,2,true); wait(2500+Random(500)); end; if(FindColorSpiral(x,y,16777215,5,345,510,465))and(not(GetColor(20,434)=0))then begin GetMousePos(x,y); Mouse(x,y,50,2,true); wait(2500+Random(500)); end; until(GetColor(20,434)=0)or(c>=20) end; procedure FindText; var mx,my:integer; begin if(FindColorSpiral(mx,my,65535,3,3,515,338))then//Find close begin MMouse(mx,my+15,1,1); repeat if(IsTextAt2(9,9,'Talk',100))then begin Mouse(mx,my+15,1,1,false); ClickText('Talk',5,5,515,338); begin Flag; wait(2500+Random(500)); TalkToRand1; end; end; MMouse(mx,my+15,1,1); mx:=mx+5; wait(random(10)+10+random(10)); until(mx>=515); if(mx>=515)then MMouse(mx+random(5),my+15,1,1); end; end; Procedure Randoms; begin FindText; FindStrangeBox; FindMiscRandoms; Uselamp('mining') end; procedure cut; begin wait(7000) findcolorspiral(x,y,treecolor,3,3,515,336) mouse(x,y,0,0,true) wait(300+random(900)) end; procedure burn; begin wait(4000) findcolorspiral(x,y,tinder,3,3,591,260) mouse(x,y,0,0,true) wait(300+random(700)) findcolorspiral(x,y,logcolor,3,3,639,257) mouse(x,y,0,0,true) end; begin loadinclude('ITunes') repeat cut; burn; until(false) end.