Basic Grind bot

09/11/2022 19:44 cryoes#1
This bot will use the first attack move in the first slot of both your temtem.

Sleep 5000
Loop{
Random, rand, 1, 10
PixelGetColor, color, 1208, 45
if color=0x222324
{
Sendinput, {a down}
Sleep 500 + rand
Sendinput, {a up}
Sendinput, {d down}
Sleep 500 + rand
Sendinput, {d up}
}
else
Sendinput, {f down}
Sleep 100 + rand
Sendinput, {f up}

}


Short... Sweet... Used simply to 1 move shot and level at shrines or to grind your TVs while you watch TV.



The way the bot works is it looks at the top right of the screen and detects if the mini map is there.. if it is there the bot will use A and D to move.

If the minimap is not detected.. it spams F.



You can change A and D to W and S depending on location and you can also change the delays but leave the +rand to ensure it is more human like.



Oh the sleep 5000 is because I was just too lazy to make it check that temtem window is focused before doing anything.. if you wanted to improve this then that would be the first thing to add because it will spam F on your keyboard and the only way to stop it is to right click on the tray icon and pause or suspend the script.

You could add hotkeys to start and stop it that would probably be a pretty good learning exercise for someone.


Happy Farming.
09/12/2022 04:38 xczsonn#2
Your coordinates don't work on my screen and
If use sendinput, bot can input it, but the character doesn't actually move in the temtem
09/13/2022 10:30 SeniorSaIty#3
the bot just spams F for me... does temtem need to be on special settings for it to work?
09/13/2022 17:59 Kyvany#4
Quote:
Originally Posted by cryoes View Post
This bot will use the first attack move in the first slot of both your temtem.

Sleep 5000
Loop{
Random, rand, 1, 10
PixelGetColor, color, 1208, 45
if color=0x222324
{
Sendinput, {a down}
Sleep 500 + rand
Sendinput, {a up}
Sendinput, {d down}
Sleep 500 + rand
Sendinput, {d up}
}
else
Sendinput, {f down}
Sleep 100 + rand
Sendinput, {f up}

}


Short... Sweet... Used simply to 1 move shot and level at shrines or to grind your TVs while you watch TV.



The way the bot works is it looks at the top right of the screen and detects if the mini map is there.. if it is there the bot will use A and D to move.

If the minimap is not detected.. it spams F.



You can change A and D to W and S depending on location and you can also change the delays but leave the +rand to ensure it is more human like.



Oh the sleep 5000 is because I was just too lazy to make it check that temtem window is focused before doing anything.. if you wanted to improve this then that would be the first thing to add because it will spam F on your keyboard and the only way to stop it is to right click on the tray icon and pause or suspend the script.

You could add hotkeys to start and stop it that would probably be a pretty good learning exercise for someone.


Happy Farming.
How i can run this ? What program i need to download? AKH?
01/29/2024 00:38 1ensu1#5
Don't know if anyone cares but this is an updated script to utilize in AHK that works for me. (the original did not work for me)

Sleep 10000

Loop{
PixelGetColor, c, 1822, 58, RGB
if (c = 0x3CE8EA)
{
Sendinput, {a down}
Sleep 500
Sendinput, {a up}
Sendinput, {d down}
Sleep 500
Sendinput, {d up}
}
else
Sendinput, {f down}
Sleep 100
Sendinput, {f up}

}
10/11/2025 16:31 mortiz90#6
Quote:
Originally Posted by 1ensu1 View Post
Don't know if anyone cares but this is an updated script to utilize in AHK that works for me. (the original did not work for me)

Sleep 10000

Loop{
PixelGetColor, c, 1822, 58, RGB
if (c = 0x3CE8EA)
{
Sendinput, {a down}
Sleep 500
Sendinput, {a up}
Sendinput, {d down}
Sleep 500
Sendinput, {d up}
}
else
Sendinput, {f down}
Sleep 100
Sendinput, {f up}

}
hey man it is not working, can you please help me with an updated version