Alright, I think I need a little more help. I started getting into writing scripts today, so most possibly this is s a stupid mistake (most probably the whole is script is a mistake

). I don't see it though.
This is the script i got :
Scriptname _VLR_Armor extends activemagiceffect
{Equip Armor}
Armor Property Armor1 Auto
Armor Property Armor2 Auto
Event OnEffectStart(Actor akTarget, Actor akCaster)
Function EquipItem(Form akItem, bool abPreventRemoval = true, bool abSilent = true) native
Game.GetPlayer().EquipItem(Armor1Property, true)
Game.GetPlayer().EquipItem(Armor2Property, true)
EndFunction
I can't compile it and I get the error message:
no viable alternative at input '-' I have already looked the error up at http://www.creationkit.com/Papyrus_Compiler_Errors , but I can't say now I know whats wrong exactly...