LoreWagon Posted December 14, 2017 Share Posted December 14, 2017 I am trying to make a script that adds my weapon to leveled lists, I have done this before, however for some reason this time it will not allow me to save, even though the script is almost identical to the previous one I've done. Could anyone please tell what the issue is? The script I'm trying to write is this:scn MilitaryTomahawkLeveledListQuestScriptshort iDoOnceBEGIN GameModeif (iDoOnce == 0) AddItemToLeveledList VendorWeaponsAllMeleeAndHand CondMilitaryTomahawk 1 1 100 AddItemToLeveledList GunRunnersStoreTier2 CondMilitaryTomahawk 1 1 100 AddItemToLeveledList LootWeaponNCRRangerVeteran CondMilitaryTomahawk 1 1 100 AddItemToLeveledList LootWeaponNCRRangerVeteranHooverDam CondMilitaryTomahawk 1 1 100 AddFormToFormList NVAllWeapons WeapMilitaryTomahawk AddFormToFormList WeaponLISTMeleeALL WeapMilitaryTomahawk set iDoOnce to 1 StopQuest MilitaryTomahawkLeveledListModendifEND Link to comment Share on other sites More sharing options...
dubiousintent Posted December 14, 2017 Share Posted December 14, 2017 You need to use GECK 1.4 Powerup Mod. Comes in a "standalone" version for the "vanilla" GECK functions, and one for GECK with NVSE functions. It fixes and improves some issues while providing the missing messages when the GECK compiler finds an error or warning, and lets you save a script without compiling it. Considered "essential" by experienced mod creators. FYI: WARNING: There is a compile all command in the GECK script editor, but it compiles ALL the scripts that are currently loaded into the GECK, regardless of their source plugin INTO YOUR PLUGIN, which will consequently override those scripts in any other plugin. This is best avoided (as in "never used") unless you really understand all the ramifications.-Dubious- Link to comment Share on other sites More sharing options...
LoreWagon Posted December 15, 2017 Author Share Posted December 15, 2017 (edited) You need to use GECK 1.4 Powerup Mod. Comes in a "standalone" version for the "vanilla" GECK functions, and one for GECK with NVSE functions. It fixes and improves some issues while providing the missing messages when the GECK compiler finds an error or warning, and lets you save a script without compiling it. Considered "essential" by experienced mod creators. FYI: WARNING: There is a compile all command in the GECK script editor, but it compiles ALL the scripts that are currently loaded into the GECK, regardless of their source plugin INTO YOUR PLUGIN, which will consequently override those scripts in any other plugin. This is best avoided (as in "never used") unless you really understand all the ramifications. -Dubious-I installed the Geck 1.4 Powerup Mod and it fixed the issue. The issue was I put "GunRunnersStoreTier2" when it was supposed to be "GunRunnerStoreTier2", I put an "s" where it wasn't needed. Thank you for the help. Edited December 15, 2017 by ShawnSMB Link to comment Share on other sites More sharing options...
Recommended Posts