View Single Post
01-08-07, 12:17 PM   #167
Nahamnessa
A Deviate Faerie Dragon
Join Date: Dec 2006
Posts: 17
Clad - Have you considered multiple range checks for healers? Heal range and curing spell ranges? Since they tend to be 40 and 30 yards, respectively. Perhaps a tiered range check?
Code:
if( InRange( Decurse ) ){
	alpha = totally solid;
}
else{
	if( InRange( Heal ) ){
		alpha = slighty transparent;
	}
	else{
		alpha = really transparent;
	}
}
  Reply With Quote