njmanga097
Posts : 983 Join date : 2016-04-24 Age : 27 Location : South East Asia
Character sheet Name: Captain Wick Faction: Wildfire Level: ∞
| Subject: [FNV] How do you add a weapon to a perk list? Sat Mar 25, 2017 7:05 am | |
| So I recently learned how to add a weapon to a perk list on my own, but now I'm wondering how to add a weapon to a perk list through a script? I'm using AK&AR15 Weapons Pack as a test esp for this mini exercise of mine. Any help/tutorial is highly appreciated |
|
VWgolfR1
Posts : 328 Join date : 2015-10-11 Age : 33 Location : Slovenia
| Subject: Re: [FNV] How do you add a weapon to a perk list? Sun Mar 26, 2017 9:46 am | |
| @njmanga097 I wrote a lengthy guide in this thread https://www.gunetwork.org/t10631-how-to-add-weapons-to-leveled-lists#197856 on how to add weapons to leveled lists, and there's a script sample in there too. You need to find a perk form list that you want to have the weapon in it and then put the code in the script properly; the formula is AddFormToFormList PerkEditorID WeaponEditorID, example given AddFormToFormList PerkCowboyWeapons WeapNVCowboyRepeateror AddFormToFormList ShotgunSurgeonWeaponsList WeapNVHuntingShotgun. The script should look like this: scn CustomWeaponsLeveledListScript
short iDoOnce
BEGIN GameMode
if (iDoOnce == 0) AddFormToFormList PerkCowboyWeapons WeapNVCowboyRepeater AddFormToFormList ShotgunSurgeonWeaponsList WeapNVHuntingShotgun set iDoOnce to 1 StopQuest CustomWeaponsLeveledListQuest endif
ENDDon't forget to check other details at the end of that guide. Good luck |
|
njmanga097
Posts : 983 Join date : 2016-04-24 Age : 27 Location : South East Asia
Character sheet Name: Captain Wick Faction: Wildfire Level: ∞
| Subject: Re: [FNV] How do you add a weapon to a perk list? Sun Mar 26, 2017 10:26 am | |
| oh wow i did not know about that O__O thank you so much @VWgolfR1 !! |
|
VWgolfR1
Posts : 328 Join date : 2015-10-11 Age : 33 Location : Slovenia
| Subject: Re: [FNV] How do you add a weapon to a perk list? Sun Mar 26, 2017 1:16 pm | |
| No problem! Don't hesitate to ask for help if you run into any problems with the whole process |
|
Sponsored content
| Subject: Re: [FNV] How do you add a weapon to a perk list? | |
| |
|