Posts: 262
Threads: 36
Joined: Dec 2012
Reputation:
0
06-27-2013, 09:21 AM
(This post was last modified: 07-03-2013, 05:29 AM by Coizado.)
Boas,
eu queria um macro que atacase o DL com exori max frigo, quando tivesse 2500 mana e o coldown tivesse acabado, alguem me consegue fazer isso sff?
Please Give me Rep+ if i helped you !
Posts: 775
Threads: 27
Joined: Dec 2012
Reputation:
0
Boa tentativa mas o Creature.NameIn não funciona assim, o Status.Buff também não retorna se está Exausted e sim se está com algum buff como Utura.
Seria algo assim:
Code:
500 {Max Frigo by C} Self.Attacking()==1 Self.Mana()>=2500 TargetID:=Creature.Target() Creature.NameIn(!TargetID!, Dragon Lord)==1 Self.Say(Exori Max Frigo) Exit()
ATENÇÃO! Se esta informação lhe foi útil, seja gentil e click em "Give Reputation to This User".
Posts: 262
Threads: 36
Joined: Dec 2012
Reputation:
0
vou testar, se eu trocar ali, o dragon lord)==1 para 2, ele só ataca exori max frigo se vier 2 né ?
Please Give me Rep+ if i helped you !
Posts: 775
Threads: 27
Joined: Dec 2012
Reputation:
0
06-27-2013, 05:47 PM
(This post was last modified: 06-27-2013, 05:50 PM by Coizado.)
Não, aquilo não é a quantidade, é um teste para saber se o seu atual alvo é um Dragon Lord ou não, se não for ele da 0, se for ele da 1, por isso ==1.
Se vc quiser testar a quantidade de monstros na tela tem que adicionar antes do self.say: Creatures.ByName(Dragon Lord)>=1 Self.Say(Exori Max Frigo) Exit()
Exemplo:
Code:
500 {Max Frigo by C} Self.Attacking()==1 Self.Mana()>=2500 TargetID:=Creature.Target() Creature.NameIn(!TargetID!, Dragon Lord)==1 Creatures.ByName(Dragon Lord)>=1 Self.Say(Exori Max Frigo) Exit()
Aí sim vc pode editar Creatures.ByName(Dragon Lord)>=
1 pra quantidade que vc quiser.
ATENÇÃO! Se esta informação lhe foi útil, seja gentil e click em "Give Reputation to This User".
Posts: 262
Threads: 36
Joined: Dec 2012
Reputation:
0
Obrigado
Please Give me Rep+ if i helped you !