![]() |
MACRO - Magic Wall Behind Yourself - Printable Version +- BBot - The best bot of the world (https://forums.bmega.net) +-- Forum: Scripts & Macros (https://forums.bmega.net/forum-4.html) +--- Forum: Free Scripts (https://forums.bmega.net/forum-10.html) +--- Thread: MACRO - Magic Wall Behind Yourself (/thread-21200.html) |
MACRO - Magic Wall Behind Yourself - doxmey - 09-05-2020 Code: 2 {MwBehind} Tibia.KeyDown(:K_NEXT)==1 Self.Direction()==:East [1] x1:=Self.X() y1:=Self.Y() VarSub(x1, 1) mapid:=Map.ItemOnTop.ID(!x1, !y1, :Z) Map.UseOn(3180, !mapid, !x1, !y1, :Z, 1) Exit() {1} Self.Direction()==:West [2] x2:=Self.X() y2:=Self.Y() VarAdd(x2, 1) mapid:=Map.ItemOnTop.ID(!x2, !y2, :Z) Map.UseOn(3180, !mapid, !x2, !y2, :Z, 1) Exit() {2} Self.Direction()==:South [3] x3:=Self.X() y3:=Self.Y() VarSub(y3, 1) mapid:=Map.ItemOnTop.ID(!x3, !y3, :Z) Map.UseOn(3180, !mapid, !x3, !y3, :Z, 1) Exit() {3} Self.Direction()==:North x4:=Self.X() y4:=Self.Y() VarAdd(y4, 1) mapid:=Map.ItemOnTop.ID(!x4, !y4, :Z) Map.UseOn(3180, !mapid, !x4, !y4, :Z, 1) Exit() Default key is Page-down, you can edit it on Tibia.KeyDown(:K_NEXT) k:next is page down just change to whatever you need. This macro is useful in the library. RE: MACRO - Magic Wall Behind Yourself - guilinhares - 11-14-2020 (09-05-2020, 03:54 PM)doxmey Wrote: Hi man, First I would like to thank you for the excellent macro. Is it possible to put MW in the sqm chosen by the keys? Example: NUMPAD KEYS 7 -> TAKE MW NORTH WEST 1 -> TAKE MW SOUTH WEST 8 -> TAKE MW NORTH 2 -> TAKE MW SOUTH 9 -> TAKE MW NORTH EAST 3 -> TAKE MW SOUTH EAST 4 -> TAKE MW WEST 6 -> TAKE MW EAST |