mq2targets titanium

bartab

Lifetimer
Joined
Dec 21, 2006
Messages
366
Reaction score
2
Points
0
watch is supposed to get a spawnsearch string but it seems to me that it doesnt work fully.
/watch add pc range 10 18 never detects pc in that range
/watch add pc 10 detects well the pc that is level 10
any idea ?
goal is to make something like
Code:
/watch pc range ${Int[${Math.Calc[${Me.Level}-4]}]} ${Int[${Math.Calc[${Me.Level}+4]}]}
 
I'm pretty sure you have to give the search string as 1 parameter - and in order to do so, it needs to be enclosed with quotes. Give it a try and let me know.

/watch add "pc range 10 18"

The reason is, it expects otehr parmeters to be for notify and the sound, so that would not work unless you tell it the watch parameter as 1 string, as I showed.

Should work fine that way.

htw