![]() |
Macro blank rune - Printable Version +- BBot - The best bot of the world (https://forums.bmega.net) +-- Forum: Support (https://forums.bmega.net/forum-6.html) +--- Forum: Support & Help (https://forums.bmega.net/forum-8.html) +--- Thread: Macro blank rune (/thread-3075.html) |
Macro blank rune - the angels - 06-30-2012 Existe algum macro para quando eu estiver com mais de 21 blank runes ele jogava elas no chão. Por exemplo, se tiver 22, ele irá jogar 1 blank rune, no chão. se tiver 23, ele irá jogar 2... 1000 {123} VarSet(X) Self.X VarSet(Y) Self.Y VarSet(Z) Self.Z Misc.ItemCountEx(3147)>=22 Map.Thrown(3147, 1, !X!, !Y!, !Z!)>=22 Eu usei isso. Está certo? RE: Macro blank rune - Dexter - 07-01-2012 Não precisa da parte final, onde esta >=22. Somente desta forma: Code: 1000 {123} VarSet(X) Self.X VarSet(Y) Self.Y VarSet(Z) Self.Z Misc.ItemCountEx(3147)>=22 Map.Thrown(3147, 1, !X!, !Y!, !Z!) |