|
VC++代码实现如下(假设游戏中心坐标为(0,0)):
float TargetX = 0, TargetY = 0;
float Frevise = 0.3;
float gameCenterX = 0, gameCenterY = 0, gameWidth = 0, gameHeight = 0;
float autoAimSpeed = 1.0; // 自m速率
if (Output.X != 0) {
if (Output.X > gameCenterX) {
TargetX = -(gameCenterX - Output.X);
TargetX = TargetX / autoAimSpeed;
if (TargetX + gameCenterX + 1 > gameWidth) {
TargetX = 0;
}
if (TargetX < 1 && TargetX > Frevise) {
TargetX = 1;
}
}
else if (Output.X < gameCenterX) {
TargetX = Output.X - gameCenterX;
TargetX = TargetX / autoAimSpeed;
if (TargetX + gameCenterX - 1 < 0) {
TargetX = 0;
}
if (TargetX > -1 && TargetX < Frevise) {
TargetX = -1;
}
}
}
if (Output.Y != 0) {
if (Output.Y > gameCenterY) {
TargetY = -(gameCenterY - Output.Y);
TargetY = TargetY / autoAimSpeed;
if (TargetY + gameCenterY + 1 > gameHeight) {
TargetY = 0;
}
if (TargetY < 1 && TargetY > Frevise) {
TargetY = 1;
}
}
else if (Output.Y < gameCenterY) {
TargetY = Output.Y - gameCenterY;
TargetY = TargetY / autoAimSpeed;
if (TargetY + gameCenterY - 1 < 0) {
TargetY = 0;
}
if (TargetY > -1 && TargetY < Frevise) {
TargetY = -1;
}
}
}
// 调用移动鼠标函数
MouseMove(1, TargetX, TargetY, 3, 3);
|
免费评分
-
|