monster [not] <monster(s) name> <condition> [<distance>] <--

All about the macro plugin can be found in this forum. This forum is intended for the macro plugin only.

Moderator: Moderators

bubber
Noob
Noob
Posts: 4
Joined: 16 Feb 2013, 09:01
Noob?: Yes

monster [not] <monster(s) name> <condition> [<distance>] <--

#1 Post by bubber »

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!
kenshix
Noob
Noob
Posts: 6
Joined: 04 Jan 2013, 14:52
Noob?: Yes

Re: monster [not] <monster(s) name> <condition> [<distance>] <--

#2 Post by kenshix »

Code: Select all

automacro test {
monster not Poring
call test2
}
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.
bubber
Noob
Noob
Posts: 4
Joined: 16 Feb 2013, 09:01
Noob?: Yes

Re: monster [not] <monster(s) name> <condition> [<distance>] <--

#3 Post by bubber »

kenshix wrote:

Code: Select all

automacro test {
monster not Poring
call test2
}
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.
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
Noob
Noob
Posts: 6
Joined: 04 Jan 2013, 14:52
Noob?: Yes

Re: monster [not] <monster(s) name> <condition> [<distance>] <--

#4 Post by kenshix »

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?
Oh. Well, if you tell me what you want to do with the macro then it's easier for me to help you.

Code: Select all

automacro test {
base >= 1
call test
}
The above macro will trigger all the time with or without Poring on your screen as long as your base level is greater or equal to 1.

Do tell me the details so that I can help in a more effective way.
bubber
Noob
Noob
Posts: 4
Joined: 16 Feb 2013, 09:01
Noob?: Yes

Re: monster [not] <monster(s) name> <condition> [<distance>] <--

#5 Post by bubber »

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
kenshix
Noob
Noob
Posts: 6
Joined: 04 Jan 2013, 14:52
Noob?: Yes

Re: monster [not] <monster(s) name> <condition> [<distance>] <--

#6 Post by kenshix »

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
bubber
Noob
Noob
Posts: 4
Joined: 16 Feb 2013, 09:01
Noob?: Yes

Re: monster [not] <monster(s) name> <condition> [<distance>] <--

#7 Post by bubber »

yea but it doesnt work the way i want it to