luzcaa Posted November 8, 2015 Share Posted November 8, 2015 I was making a diferent script to auto attack monster on tree of savior... i`m using the same script that i use on dofus, cuz they are like each other... const Resource1 = 9417168; // Color de tu Recurso - Pega el color del recurso Nº1 Resource2 = 9417168; // Color de tu Recurso - Pega el color del recurso Nº2 Resource3 = 9417168; // Color de tu Recurso - Pega el color del recurso Nº3 CollectTime = 3000; // Tiempo en recolectar - Tiempo de recoleccion (11000 = 11 Segundos) var x, y, lvlx, lvly: Integer; function TargetResource1: Boolean; begin Result := FindColor(x, y, Resource1, 0, 0, 800, 600); end; function TargetResource2: Boolean; begin Result := FindColor(x, y, Resource1, 0, 0, 800, 600); end; function TargetResource3: Boolean; begin Result := FindColor(x, y, Resource3, 0, 0, 800, 600); end; function NextResource1: Boolean; begin Result := FindColor(x, y, Resource1, 0, 0, 800, 600); end; function NextResource2: Boolean; begin Result := FindColor(x, y, Resource2, 0, 0, 800, 600); end; function NextResource3: Boolean; begin Result := FindColor(x, y, Resource3, 0, 0, 800, 600); end; procedure Collect; begin if (TargetResource1 or TargetResource2 or TargetResource3) then begin MoveMouse(x, y); Wait(100 + Random(200)); MouseBtnDown(x, y, mbLeft); Wait(20 + Random(50)); MouseBtnUp(x, y, mbLeft); Wait(3000 + Random(500)); Wait(CollectTime); end; end; function NoResource: Boolean; begin Result := not FindColor(x, y, 1683891, 0, 0, 800, 600); end; function FindLevel: Boolean; begin Result := FindColor(lvlx, lvly, 25087, 0, 0, 500, 500); end; procedure LevelUp; begin if FindLevel then begin MoveMouse(lvlx, (lvly + 2)); Wait(100 + Random(100)); ClickMouse(lvlx, (lvly + 2), mbLeft); Wait(100 + Random(100)); end; end; begin Collect; repeat if NoResource then Collect; if (NextResource1 or NextResource2 or NextResource3) then Collect; if FindLevel then LevelUp; until False; end. the script find the monster but it dont click.. when i swap to the game client... the script dont work... some one have any solution? Quote Link to comment Share on other sites More sharing options...
Wanted Posted November 13, 2015 Share Posted November 13, 2015 Does something like MoveMouse(100, 100) not work on that game client? If so then that client has some type of game guard Quote Link to comment Share on other sites More sharing options...
pixe Posted January 16 Share Posted January 16 https://t.me/pump_upp - best crypto pumps on telegram Make 1000% and more within 1 day, join channel @pump_upp ! Quote Link to comment Share on other sites More sharing options...