Good morming everyone.
I want to know if its possible to the bot do a random walk only when no monsters around. I'm trying to bot with my alchemist and its homunculus.
Thank you for your time in advance.
Random walk when no monsters around
Moderator: Moderators
-
- Noob
- Posts: 13
- Joined: 13 Jun 2008, 23:00
- Noob?: Yes
-
- Developers
- Posts: 32
- Joined: 08 Aug 2008, 15:35
- Noob?: No
Re: Random walk when no monsters around
Macros?
Code: Select all
automacro walk {
monster Zombie,Andre Egg
run-once 1
call {
do conf route_randomWalk 0
release walk
}
automacro dontWalk {
monster not Zombie,Andre Egg
run-once 1
call {
do conf route_randomWalk 1
release dontWalk
}
for um openKore more powerfull!
-
- Noob
- Posts: 13
- Joined: 13 Jun 2008, 23:00
- Noob?: Yes
Re: Random walk when no monsters around
Omg, I didn't think on that. I do macros but I didn't think on that macro xD.
Thank you so much.
Thank you so much.
-
- Noob
- Posts: 2
- Joined: 09 Dec 2012, 18:41
- Noob?: No
Re: Random walk when no monsters around
dont work for me ><
-
- Plain Yogurt
- Posts: 61
- Joined: 12 Nov 2012, 09:22
- Noob?: Yes
Re: Random walk when no monsters around
yakuzi wrote:dont work for me ><
Code: Select all
automacro walk {
monster Zombie,Andre Egg //<--- [b]Change this part accordingly[/b]
run-once 1
call {
do conf route_randomWalk 0
release walk
}
automacro dontWalk {
monster not Zombie,Andre Egg //<--- [b]Change this part accordingly[/b]
run-once 1
call {
do conf route_randomWalk 1
release dontWalk
}
-
- Noob
- Posts: 2
- Joined: 09 Dec 2012, 18:41
- Noob?: No
Re: Random walk when no monsters around
Code: Select all
automacro walk {
monster Rocker,Savage Babe
run-once 1
call {
do conf route_randomWalk 0
release walk
}
automacro dontWalk {
monster not Rocker,Savage Babe
run-once 1
call {
do conf route_randomWalk 1
release dontWalk
}
control\macros.txt: ignoring 'automacro dontWalk {' (munch, munch, unknown automacro keyword)
error loading control\macros.txt.
-
- Plain Yogurt
- Posts: 61
- Joined: 12 Nov 2012, 09:22
- Noob?: Yes
Re: Random walk when no monsters around
Code: Select all
automacro walk {
monster Rocker,Savage Babe
run-once 1
call {
do conf route_randomWalk 0
release walk
} <----- forgot one bracket.
}
automacro dontWalk {
monster not Rocker,Savage Babe
run-once 1
call {
do conf route_randomWalk 1
release dontWalk
} <----- forgot one bracket.
}