By Cerberus.Kellyn 2013-03-02 15:36:02			
			
						
                     
                 
                hmm guess you're right... i just looked at the rdm xml... and it has rules to change to paralyze and silence lol... but they used to work... i think... idk i got the xml from a friend. My macros are just basic /ma paralyna <stpc>, /ma silena <stpc> 
is there a way to get these to work still or should i just take it all out?
<!-- spell-reps -->
			<if mode="AND" spell="paralyna|silena|haste" targetype="monster">
				<if spell="paralyna">
					<action type="changespell" spell="Paralyze"/>
				</if>
				
				<elseif spell="silena">
					<action type="changespell" spell="silence"/>
				</elseif>
				
				<else>
					<action type="changespell" spell="slow"/>
				</else>
			</if>
			
			<if mode="AND" spell="paralyze|silence|slow" targettype="Self|Player">
				<if spell="paralyze">
					<action type="changespell" spell="paralyna"/>
				</if>
				
				<elseif spell="silence">
					<action type="changespell" spell="silena"/>
				</elseif>
				
				<else>
					<action type="changespell" spell="haste"/>
				</else>
			</if>