Can't find the correct Function
Hello. I'm actually working on a personal script to run it on bluestacks with the game "Monster Warlord".
Right now I'm working with static mouse positions and the game can detect if there is a bot running since he detects the same mouse positions.
This is the code i have right now.
Quote:
Program bounty;
Procedure Place;
Begin
MoveMouse(356,348);
ClickMouse(356,348,1)
Wait(3000);
MoveMouse(477,257);
ClickMouse(477,257,1);
Wait(3000);
MoveMouse(507,442);
ClickMouse(507,442,1);
Wait(93000);
End
begin
Repeat
Place;
Until(False)
end.
Basically, what I need now is a function that moves the mouse not in the exact x and y position. It must have some kind of random space where the mouse can play. In that way, the game won't recognize it as a bot.
I need a command that makes me the function of the left click, since the "ClickMouse(x,y,1)" uses static coordinates and that does not help me.
Any Suggestions?
Sorry for my bad english haha.
Thanks,