Posts: 421
	Threads: 54
	Joined: May 2013
	
Reputation: 
0
	 
	
	
		Hello Fellas!
Any1 have idea how to make macro to wear Stealth Rings when Corym Sharlatan or Corym Skirmisher or Corym Vanguard at screen?
I mean, 3 mosters at screen but only one of those, it can be in same time at screen 1 Sharlatan, 1 Skirmisher, 1 Vanguard.
	
	
	
_____________________________________________
 
	
	
 
 
	
	
	
		
	Posts: 928
	Threads: 14
	Joined: Feb 2014
	
Reputation: 
0
	 
	
	
		Code:
500 {stealth ring} ring:=3049 Creatures.ByName(Corym Sharlatan) [jump] Self.Equip.Ring(!ring!) Exit() {jump} Creatures.ByName(Corym Skirmisher) [jump2] Self.Equip.Ring(!ring!) Exit() {jump2} Creatures.ByName(Corym Vanguard) [jump3] Self.Equip.Ring(!ring!) Exit() {jump3} Exit()
 
	
	
I'm trying HELP You guys, make me favour and press this /\ green button with REP+, this keeping me with helping You.
	
	
 
 
	
	
	
		
	Posts: 2,010
	Threads: 147
	Joined: Jan 2014
	
Reputation: 
0
	 
	
	
		I had that idea idk will be work 
Cre:=Creature.ByName(Corym Sharlatan)
Cre:=Creature.ByName(Corym Vanguard)
Cre:=Creature.ByName(Corym Skirmisher)
Creatures.ByName(!Cre!)>=3
Self.Equip.Ring(3049)
	
	
	
	
	
 
 
	
	
	
		
	Posts: 2,010
	Threads: 147
	Joined: Jan 2014
	
Reputation: 
0
	 
	
		
		
		12-11-2014, 07:34 PM 
(This post was last modified: 12-11-2014, 07:42 PM by damiansnk.)
		
	 
	
		IDK it's working or not on other bot is work
Creatures.ByName(Name, name)
How many creatures atacked you in last 2 sec
Misc.AttackersCount(2)>=3
How many hp u lost in last 2 sec
Misc.HPHitsBigger(2, how many hp lost)
how many creatures around you (including players)
Creatures.Beside()>=3
how many creatures 2 sqm from u (including players)
Creatures.ByRange(2)>=3
	
	
	
	
	
 
 
	
	
	
		
	Posts: 928
	Threads: 14
	Joined: Feb 2014
	
Reputation: 
0
	 
	
	
		omg I forgot:
Code:
500 {stealth ring} ring:=3049 Creatures.ByName(Corym Sharlatan)>=1 [jump] Self.Equip.Ring(!ring!) Exit() {jump} Creatures.ByName(Corym Skirmisher)>=1 [jump2] Self.Equip.Ring(!ring!) Exit() {jump2} Creatures.ByName(Corym Vanguard)>=1 [jump3] Self.Equip.Ring(!ring!) Exit() {jump3} Exit()
now must be good 
 
	
I'm trying HELP You guys, make me favour and press this /\ green button with REP+, this keeping me with helping You.