Not sure if this is fully a scripting fail on my part but heres what i have.
I have my "XMarkerHeading" and my "Trigger Box" and trying to have it so when I enter the Trigger box it teleports me instantly to the XMarkerHeading.
My Trigger box has my script attached with the dest property from my script set to XMarkerHeading. Now when I save the script it gets a error when compiling but I can choose to Save anyway.
Heres the error:
Spoiler
Starting 1 compile threads for 1 files...
Compiling "FenTeleScript"...
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(8,26): missing RPAREN at '\\r\\n'
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(9,42): required (...)+ loop did not match anything at input ','
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(10,42): required (...)+ loop did not match anything at input ','
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(11,42): required (...)+ loop did not match anything at input ','
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(12,39): required (...)+ loop did not match anything at input ','
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(13,39): required (...)+ loop did not match anything at input ','
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(14,39): required (...)+ loop did not match anything at input ','
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(15,26): required (...)+ loop did not match anything at input ')'
No output generated for FenTeleScript, compilation failed.
Batch compile of 1 files finished. 0 succeeded, 1 failed.
Failed on FenTeleScript
Code:Starting 1 compile threads for 1 files...
Compiling "FenTeleScript"...
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(8,26): missing RPAREN at '\\r\\n'
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(9,42): required (...)+ loop did not match anything at input ','
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(10,42): required (...)+ loop did not match anything at input ','
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(11,42): required (...)+ loop did not match anything at input ','
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(12,39): required (...)+ loop did not match anything at input ','
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(13,39): required (...)+ loop did not match anything at input ','
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(14,39): required (...)+ loop did not match anything at input ','
d:\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\FenTeleScript.psc(15,26): required (...)+ loop did not match anything at input ')'
No output generated for FenTeleScript, compilation failed.
Batch compile of 1 files finished. 0 succeeded, 1 failed.
Failed on FenTeleScript
Scriptname FenTeleScript extends ObjectReferenceObjectReference Property dest AutoEvent OnTriggerEnter (ObjectReference akActionRef)if (akActionRef == Game.GetPlayer()) akActionRef.TranslateTo( dest.GetPositionX(), dest.GetPositionY(), dest.GetPositionZ(), dest.GetAngleX(), dest.GetAngleY(), dest.GetAngleZ(), 500)endifendEvent
