BBot - The best bot of the world
Position Macro Suggestion - Printable Version

+- BBot - The best bot of the world (https://forums.bmega.net)
+-- Forum: BBot (https://forums.bmega.net/forum-3.html)
+--- Forum: Sugestions (https://forums.bmega.net/forum-21.html)
+--- Thread: Position Macro Suggestion (/thread-18428.html)



Position Macro Suggestion - You know who - 08-27-2015

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:

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


RE: Position Macro Suggestion - MegaNo0body - 08-30-2015

Check the other suggestion, please.