monster [not] <monster(s) name> <condition> [<distance>]
Triggers when <monster(s) name> is near. If <distance> is not set, it will consider the value from clientSight.
Comma-separated arguments are treated as OR conditions.
Multiple lines are treated as AND conditions.
Hey there, i dont understand how this works and i feel like ive tried everything so please help !
automacro test {
monster [not] Poring
call test2
}
i want my auto macro to call "test2" if the monster poring is NOT on screen
thanks!
monster [not] <monster(s) name> <condition> [<distance>] <--
Moderator: Moderators
-
- Noob
- Posts: 4
- Joined: 16 Feb 2013, 09:01
- Noob?: Yes
-
- Noob
- Posts: 6
- Joined: 04 Jan 2013, 14:52
- Noob?: Yes
Re: monster [not] <monster(s) name> <condition> [<distance>] <--
Code: Select all
automacro test {
monster not Poring
call test2
}
-
- Noob
- Posts: 4
- Joined: 16 Feb 2013, 09:01
- Noob?: Yes
Re: monster [not] <monster(s) name> <condition> [<distance>] <--
Thanks for the answer, i cant even seem to get that working, but what i was looking for was a macro to trigger no matter what as long "monster poring" is not on screen, got any ideas how to make that?kenshix wrote:This macro will only trigger if you encounter any monster that are not Poring. If there are no monsters around you, this macro will not trigger.Code: Select all
automacro test { monster not Poring call test2 }
-
- Noob
- Posts: 6
- Joined: 04 Jan 2013, 14:52
- Noob?: Yes
Re: monster [not] <monster(s) name> <condition> [<distance>] <--
Oh. Well, if you tell me what you want to do with the macro then it's easier for me to help you.Thanks for the answer, i cant even seem to get that working, but what i was looking for was a macro to trigger no matter what as long "monster poring" is not on screen, got any ideas how to make that?
Code: Select all
automacro test {
base >= 1
call test
}
Do tell me the details so that I can help in a more effective way.
-
- Noob
- Posts: 4
- Joined: 16 Feb 2013, 09:01
- Noob?: Yes
Re: monster [not] <monster(s) name> <condition> [<distance>] <--
something like this, i want to search for an mvp and then stop when it does..
automacro tele {
location prt_fild08
monster [not] poring
run-once 1
call fly
}
macro fly {
do is Fly Wing
pause 2
release tele
}
so flywing every 2 sec tila poring is on screen
automacro tele {
location prt_fild08
monster [not] poring
run-once 1
call fly
}
macro fly {
do is Fly Wing
pause 2
release tele
}
so flywing every 2 sec tila poring is on screen
-
- Noob
- Posts: 6
- Joined: 04 Jan 2013, 14:52
- Noob?: Yes
Re: monster [not] <monster(s) name> <condition> [<distance>] <--
Have you tried teleport search?
Basically, you will teleport until you find your target monster.
Here is the guide: http://forums.openkore.com/viewtopic.php?f=55&t=16443
Basically, you will teleport until you find your target monster.
Here is the guide: http://forums.openkore.com/viewtopic.php?f=55&t=16443
-
- Noob
- Posts: 4
- Joined: 16 Feb 2013, 09:01
- Noob?: Yes
Re: monster [not] <monster(s) name> <condition> [<distance>] <--
yea but it doesnt work the way i want it to