[macro] ajuda - 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] ajuda (/thread-4961.html) |
[macro] ajuda - 81432858 - 10-15-2012 Olá... Eu jogo um ot server que tem magia para trapar os inimigos. Eu queria usar um macro para trapar eles, porém esse macro que criei, solta a magia, mesmo se não tiver ninguem no target... 1000 {Macro Sample} Target.Foe() Target.Distance()<=2 Self.Say(MAGIA) O que eu fiz de errado? RE: [macro] ajuda - Dexter - 10-15-2012 Tente com esse macro abaixo: Code: 1000 {Macro Sample} Self.Attacking() Target.Foe() Target.Distance()<=2 Self.Say(MAGIA) RE: [macro] ajuda - 81432858 - 10-15-2012 (10-15-2012, 06:36 PM)Dexter Wrote: Tente com esse macro abaixo:Não funcionou... RE: [macro] ajuda - spiff26 - 10-16-2012 Acho que seria assim Code: 1000 {Macro Sample} Self.Attacking()==1 Target.Foe() Target.Distance()<=2 Self.Say(MAGIA) RE: [macro] ajuda - 81432858 - 10-16-2012 (10-16-2012, 12:10 AM)spiff26 Wrote: Acho que seria assim Vlw ;* |