08-27-2015, 01:51 PM
Well as you know exori min is not working correctly with BBot so my suggestion is to add some feature like dynamic pos so you can add:
Examples of Dynamic Pos Macros:
I hope I make myself understood since my english is not that good :p
Feel free to ask any questions
Quote:Current Position -1 -- if you are on pos 1000 and monster is on pos 999 macro return 1
Current position +1 -- if you are on pos 1000 and monster is on pos 1001 macro return 1
Examples of Dynamic Pos Macros:
Code:
X:=Self.X()
Y:=Self.Y()
Z:=Self.Z()
Creatures.BesideByPos(!X!, !Y!-1, !Z!) -- exori min north
Code:
X:=Self.X()
Y:=Self.Y()
Z:=Self.Z()
Creatures.BesideByPos(!X!, !Y!+1, !Z!) -- exori min south
Code:
X:=Self.X()
Y:=Self.Y()
Z:=Self.Z()
Creatures.BesideByPos(!X!-1, !Y!, !Z!) -- exori min west
Code:
X:=Self.X()
Y:=Self.Y()
Z:=Self.Z()
Creatures.BesideByPos(!X!+1, !Y!, !Z!) -- exori min east
I hope I make myself understood since my english is not that good :p
Feel free to ask any questions