alvaroreis Posted November 17, 2012 Share Posted November 17, 2012 (edited) I need to edit the entry 'LaserCommanderWeaponsList' to add some custom laser weapons(Hedszot's Weapon Pack) under the 'Laser Commander' perk, but whenever I try to edit the entry to add the weapon's EditorID, nothing happens. Any solution? It's very simple, yet I can't get it to work. Edited November 17, 2012 by alvaroreis Link to comment Share on other sites More sharing options...
doodooroonysjr Posted November 17, 2012 Share Posted November 17, 2012 I need to edit the entry 'LaserCommanderWeaponsList' to add some custom laser weapons(Hedszot's Weapon Pack) under the 'Laser Commander' perk, but whenever I try to edit the entry to add the weapon's EditorID, nothing happens. Any solution? It's very simple, yet I can't get it to work. I had a similar problem when trying to edit an AmmoList. Turns out you have to drag&drop from the object window onto the form list window. Link to comment Share on other sites More sharing options...
Xaranth Posted November 18, 2012 Share Posted November 18, 2012 I need to edit the entry 'LaserCommanderWeaponsList' to add some custom laser weapons(Hedszot's Weapon Pack) under the 'Laser Commander' perk, but whenever I try to edit the entry to add the weapon's EditorID, nothing happens. Any solution? It's very simple, yet I can't get it to work. I had a similar problem when trying to edit an AmmoList. Turns out you have to drag&drop from the object window onto the form list window. A better way is to attach a script to the weapons in question, though, adding the weapon to the form in question at instantiation. If you hand-edit the list, another mod that also does so can bollix it up for you. For my DARC mod I used this script attached to the weapon: scn DARC02scptListOpsDARCECarbine begin OnAdd if (DARC02WeapDARCECarbine.IsInList BeamChallengeWeaponLIST != 1) AddFormToFormList BeamChallengeWeaponLIST DARC02WeapDARCECarbine AddFormToFormList WeaponListRangedALL DARC02WeapDARCECarbine AddFormToFormList TheProfessionalWeaponsList DARC02WeapDARCECarbine AddFormToFormList LaserCommanderWeaponsList DARC02WeapDARCECarbine AddFormToFormList NVAllWeapons DARC02WeapDARCECarbine AddFormToFormList Everything DARC02WeapDARCECarbine AddFormToFormList EnergyWeapons DARC02WeapDARCECarbine AddFormToFormList ExplodesGasTrapsOnHit DARC02WeapDARCECarbine endIf end The ECarbine is a tweaked Laser RCW. It might be better to put the listOps script in a quest script instead, but I don't need any other scripts attached to my weapons, so... But this way, no matter who else plays with the Form Lists in question, my ECarbine is still there. -X Link to comment Share on other sites More sharing options...
Recommended Posts