TylerGoble1 Posted February 1, 2013 Share Posted February 1, 2013 Hey, I'm new to modding and I'm having some issues. It started when I added some scripting properties to the quest I was working on: Starting 1 compile threads for 1 files...Compiling "QF_01CalliaLocheQuest_02000D63"...C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_01CalliaLocheQuest_02000D63.psc(55,13): script property Callia_Key already definedC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_01CalliaLocheQuest_02000D63.psc(55,13): script variable ::Callia_Key_var already definedC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_01CalliaLocheQuest_02000D63.psc(55,13): script property Callia_Key already has a get function definedC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_01CalliaLocheQuest_02000D63.psc(55,13): script property Callia_Key already has a set function definedNo output generated for QF_01CalliaLocheQuest_02000D63, compilation failed. Batch compile of 1 files finished. 0 succeeded, 1 failed.Failed on QF_01CalliaLocheQuest_02000D63 I'm guessing I need to get rid of the "Callia_Key" script property, but can't figure out how to do that. I spent some time looking around the wiki but couldn't find anything. Thanks in advance for the help! Link to comment Share on other sites More sharing options...
VectorPlexus Posted February 1, 2013 Share Posted February 1, 2013 Hey, I'm new to modding and I'm having some issues. It started when I added some scripting properties to the quest I was working on: Starting 1 compile threads for 1 files...Compiling "QF_01CalliaLocheQuest_02000D63"...C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_01CalliaLocheQuest_02000D63.psc(55,13): script property Callia_Key already definedC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_01CalliaLocheQuest_02000D63.psc(55,13): script variable ::Callia_Key_var already definedC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_01CalliaLocheQuest_02000D63.psc(55,13): script property Callia_Key already has a get function definedC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_01CalliaLocheQuest_02000D63.psc(55,13): script property Callia_Key already has a set function definedNo output generated for QF_01CalliaLocheQuest_02000D63, compilation failed. Batch compile of 1 files finished. 0 succeeded, 1 failed.Failed on QF_01CalliaLocheQuest_02000D63 I'm guessing I need to get rid of the "Callia_Key" script property, but can't figure out how to do that. I spent some time looking around the wiki but couldn't find anything. Thanks in advance for the help! The problem seems to be that you are trying to define a variable/property in line 55 (Callia_Key and Callia_Key_Var) that was already defined previously. You should post the code if you want a more specific answer. Link to comment Share on other sites More sharing options...
steve40 Posted February 1, 2013 Share Posted February 1, 2013 We are not psychic :psyduck: Link to comment Share on other sites More sharing options...
Recommended Posts