Hello. Excuse my English, it's not my native language. Im trying to make a mod with different types of injuries depending on the damage received. For example, if you receive a damage from a Flamer, you get burned. I thought that the function isinlist can help me there, if "aksource" isinlist then make fire injury. If not, then other... I'm scripting everything from a Quest that controls everything. I'm not attaching the complete script but you can get the idea. " Scriptname IAA_InjuriesDiseaseControl extends Quest Actor Property PlayerRef Auto Const Formlist Property IAA_List_FireDamage Auto Const Event OnInit() RegisterForHitEvent(PlayerRef) EndEvent Event OnHit(objectReference akTarget, objectReference akAggressor, Form akSource, Projectile akProjectile, bool abPowerAttack, bool abSneakAttack, bool abBashAttack, bool abHitBlocked, string apMaterial) if akTarget == PlayerRef If akSource.Isinlist IAA_List_FireDamage == 1 Debug.notification("Fire damage done") else Debug.Notification("Not fire damage") endif endif RegisterForHitEvent(PlayerRef) ;To check another hit Endevent " I'm getting error "no viable alternative at input 'IAA_List_FireDamage'", don't know why is happening, even though the wiki is not helping me so much :( Thanks for your help.Have a nice day