|
You last visited: Today at 20:26
Advertisement
Basic Grind bot
Discussion on Basic Grind bot within the Temtem forum part of the Other Online Games category.
09/11/2022, 19:44
|
#1
|
elite*gold: 0
Join Date: Oct 2017
Posts: 10
Received Thanks: 7
|
Basic Grind bot
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
|
#2
|
elite*gold: 0
Join Date: Jun 2015
Posts: 2
Received Thanks: 0
|
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
|
#3
|
elite*gold: 0
Join Date: Oct 2021
Posts: 4
Received Thanks: 2
|
the bot just spams F for me... does temtem need to be on special settings for it to work?
|
|
|
09/13/2022, 17:59
|
#4
|
elite*gold: 0
Join Date: Jan 2014
Posts: 25
Received Thanks: 1
|
Quote:
Originally Posted by cryoes
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
|
#5
|
elite*gold: 0
Join Date: Sep 2017
Posts: 10
Received Thanks: 2
|
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}
}
|
|
|
All times are GMT +2. The time now is 20:26.
|
|