В конце компиляции просто пишет Starting 1 compile threads for 1 files... Compiling "SecretDoorScript"... E:\games\The Elder Scrolls 5.Skyrim.v 1.8.151.0.7 + 4 DLC\Data\Scripts\Source\temp\SecretDoorScript.psc(7,11): no viable alternative at input 'akActionRef' E:\games\The Elder Scrolls 5.Skyrim.v 1.8.151.0.7 + 4 DLC\Data\Scripts\Source\temp\SecretDoorScript.psc(16,11): no viable alternative at input 'akActionRef' No output generated for SecretDoorScript, compilation failed. Batch compile of 1 files finished. 0 succeeded, 1 failed. Failed on SecretDoorScript вот сам скрипт который компилирует Scriptname SecretDoorScript extends ObjectReference ObjectReference Property SecretDoor auto auto State closed Event OnActivate(ObjectReference akActionRef) if akActionRef = Game.GetPlayer() SecretDoor.PlayGamebryoAnimation("forward", true) GotoState("opened") endif EndEvent EndState State opened Event OnActivate(ObjectReference akActionRef) if akActionRef = Game.GetPlayer() SecretDoor.PlayGamebryoAnimation("backward", true) GotoState("closed") endif EndEvent EndState