horrorgun Posted July 2, 2014 Share Posted July 2, 2014 Hey guysYesterday I saw this tutorial on how to add videos or credits to your mods using the creation kit. Following the tutorial I tried to enter the code in the Papyrus Fragments section of the quest stage, which is shown below. However whenever I try to compile the code I keep getting this error. Quote Starting 1 compile threads for 1 files...Compiling "QF_MyCreditQuest_01028CEC"...c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_MyCreditQuest_01028CEC.psc(10,0): variable fadeToBlackImod is undefinedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_MyCreditQuest_01028CEC.psc(10,16): none is not a known user-defined typec:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_MyCreditQuest_01028CEC.psc(12,0): variable fadeToBlackImod is undefinedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_MyCreditQuest_01028CEC.psc(12,22): variable fadeToBlackHoldImod is undefinedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_MyCreditQuest_01028CEC.psc(12,16): none is not a known user-defined typec:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_MyCreditQuest_01028CEC.psc(16,0): variable fadeToBlackHoldImod is undefinedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_MyCreditQuest_01028CEC.psc(16,26): variable fadeToBlackBackImod is undefinedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_MyCreditQuest_01028CEC.psc(16,20): none is not a known user-defined typeNo output generated for QF_MyCreditQuest_01028CEC, compilation failed. Batch compile of 1 files finished. 0 succeeded, 1 failed.Failed on QF_MyCreditQuest_01028CECI'm not quite sure why this error shows up but whenever I attempt to add a property to it using the properties tab I keep getting this error: Quote Starting 1 compile threads for 1 files...Compiling "QF_MyQuestTest_0102924F"...c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(27,28): script property NewProperty already definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(27,28): script variable ::NewProperty_var already definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(27,28): script property NewProperty already has a get function definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(27,28): script property NewProperty already has a set function definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(30,13): script property NewProperty already definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(30,13): script variable ::NewProperty_var already definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(30,13): script property NewProperty already has a get function definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(30,13): script property NewProperty already has a set function definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(32,13): script property NewProperty already definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(32,13): script variable ::NewProperty_var already definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(32,13): script property NewProperty already has a get function definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(32,13): script property NewProperty already has a set function definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(34,42): no viable alternative at input '-'c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(34,28): script property NewProperty already definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(34,28): script variable ::NewProperty_var already definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(34,28): script property NewProperty already has a get function definedc:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\QF_MyQuestTest_0102924F.psc(34,28): script property NewProperty already has a set function definedNo output generated for QF_MyQuestTest_0102924F, compilation failed. Batch compile of 1 files finished. 0 succeeded, 1 failed.Failed on QF_MyQuestTest_0102924FDoes anyone know what is causing this or how to fix it? Here's the Papyrus Fragment I used which was shown in the video. Quote game.disablePlayerControls()utility.wait(2.0)fadeToBlackImod.apply()utility.wait(2.0)fadeToBlackImod.popTo(fadeToBlackHoldImod)utility.wait(2.0)game.playBink("Introtest.bik")utility.wait(2.0)fadeToBlackHoldImod.popTo(fadeToBlackBackImod)utility.wait(2.0)game.enablePlayerControls() Link to comment Share on other sites More sharing options...
Recommended Posts