Live Help
Membership
You are a guest!

Register Today!

Log In
Reset Password
Game Network
Community Forum

MMO GAME LIST
World of Warcraft
Age of Conan
Anarchy Online
Archlord
Cabal Online
City of Heroes
City of Villains
Dark Age of Camelot
Darkfall Online
Diablo 2
Dungeons and Dragons
Dofus
Eve Online
Everquest 2
Final Fantasy XI
Guild Wars
Hero Online
Knight Online
Lineage 2
Lord of the Rings Online
Maple Story
Ragnarok Online
Runescape 2
Second Life
SilkRoad Online
Star Wars Galaxies
Tibia
Warhammer Online

FPS GAME LIST
Call of Duty
Combat Arms
Counter Strike
Halo

Welcome Guest ( Log In | Register )

> Wheat & map point color picker, script collects colors of wheat and map point
post Oct 18 2009, 09:56 AM
Post #1

margreg



SCAR Coder
Group Icon

Group: Elite Members
Posts: 184
Joined: 26-April 09
Member No.: 893,649






Wheat & Map point color collector

Description
This script actually helps to write advanced scripts to avoid ancama anti-bot system of color changing.
What it actually do is picking color of wheat and map point 7/11.
You can start it night time and by morning it collects all color changes of wheat and map point.
It helps you to write more complicated scripts including this color changes.

CODE
{
This script picks color of wheat and map point in Dofus every 32 minutes.
It helps to make advanced scripts avoiding ankama anti-bot system of color changing.
To avoid disconnecting this script also spams some message every 4 minutes.
You may run it during night time and collect all color changes for wheat and map points during this time.

1. Start Dofus.
2. Make changes in constant part.
3. Run script.
4. In the morning look at bottom part of SCAR you will see a lot of color pickers, make your conclusions.
5. enjoy :)
}
program Color_Picker_map_points_and_wheat;
var
j : integer;

const
x = 33;  // x coordinate of message line in DOFUS
y = 599; // y coordinate of message line in DOFUS
picker_x = 100; // x coordinates of color picker button in SCAR
picker_y = 100; // y coordinates of color picker button in SCAR
map_x = 100; // x coordinates of moving map point in DOFUS
map_y = 100; // y coordinates of moving map point in DOFUS
wheat_x = 100; // x coordinates of wheat
wheat_y = 100; // y coordinates of wheat

label
start;

procedure map_points; // picking map point color
begin
     movemousesmooth(picker_x, picker_y);
     wait(100+random(50));
     clickmouse(picker_x, picker_y, true);
     wait(1000+random(200));
     movemousesmooth(map_x, map_y);
     wait(500+random(50));
     clickmouse(map_x, map_y, true);
     wait(1000+random(200));
end;

procedure wheat; // picking wheat color
begin
     movemousesmooth(picker_x, picker_y);
     wait(100+random(50));
     clickmouse(picker_x, picker_y, true);
     wait(1000+random(200));
     movemousesmooth(wheat_x, wheat_y);
     wait(500+random(50));
     clickmouse(wheat_x, wheat_y, true);
     wait(1000+random(200));
end;

procedure message; // just to disable disconnecting
begin
     movemouse(x,y);
     wait(1000+random(200));
     clickmouse(x,y, true);
     wait(1000+random(200));
     sendkeys('k'); // your message
     wait(1000+random(200));
     sendkeys(chr(13));
     wait(1000+random(200));
end;


begin
ClearDebug;
start:
WriteLn('Wheat color');
wheat;
WriteLn('Map point color');
map_points;
for j:=1 to 8 do
   begin
        message;
        wait(240000+random(2000)); // 4 minutes of waiting between two messages
   end;

goto start;
end.
Go to the top of the page
 
+Quote Post



Reply to this topicStart new topic

 


> Board Footer
Time is now: 22nd March 2010 - 06:14 AM