chaosvenom Posted July 18, 2013 Share Posted July 18, 2013 Well my first post and it is to ask for help. I am working on my first mod and want to increase default tag skills to 4 but cannot find the script file for the "family history" action at game start.I have managed to find out how to edit it once I find it at http://geck.bethsoft.com/index.php?title=SetTagSkills Link to comment Share on other sites More sharing options...
Gribbleshnibit8 Posted July 18, 2013 Share Posted July 18, 2013 A little known feature in GECK is the "Find Text" option under the Edit menu. You can type in a function name in there, and it will search every object, script, dialogue, and quest stage for the text you want. You're looking for probably stage 90 of the VCG01 script, and VCG04ActivatorScript Link to comment Share on other sites More sharing options...
chaosvenom Posted July 19, 2013 Author Share Posted July 19, 2013 (edited) Yep over look that I bee searching the long way going script by script to see what the do. From the looks for the names I would have glanced over them without second thought so thank you it your post is a big help. On a site note going script by script does get me used to the format a bit. This is how I managed to find ScriptName GenericScript ; All generic game functionality goes here. Short HereAndNowXP Short Addicted Begin GameMode Set Addicted to 0 If Player.HasMagicEffect AddictRedAGAlcohol == 1 Set Addicted to 1 Elseif Player.HasMagicEffect AddictRedAGJet == 1 Set Addicted to 1 Elseif Player.HasMagicEffect AddictRedAGMorphine == 1 Set Addicted to 1 Elseif Player.HasMagicEffect AddictRedAGPsycho == 1 Set Addicted to 1 Elseif Player.HasMagicEffect AddictRedAGSteady == 1 Set Addicted to 1 Elseif Player.HasMagicEffect AddictRedAGTurbo == 1 Set Addicted to 1 Elseif Player.HasMagicEffect AddictRedENBuffout == 1 Set Addicted to 1 Elseif Player.HasMagicEffect AddictRedCHQuantum == 1 Set Addicted to 1 Elseif Player.HasMagicEffect AddictRedCHRebound == 1 Set Addicted to 1 Elseif Player.HasMagicEffect AddictRedCHTobacco == 1 Set Addicted to 1 Elseif Player.HasMagicEffect AddictRedENHydra == 1 Set Addicted to 1 Elseif Player.HasMagicEffect AddictRedPEMentats == 1 Set Addicted to 1 Elseif Player.HasMagicEffect AddictRedSTAntNectar == 1 Set Addicted to 1 Elseif Player.HasMagicEffect AddictRedCHQuantum == 1 Set Addicted to 1 EndIf If Player.HasMagicEffect Concussion == 0 Player.CastImmediateOnSelf PlayerConcussed EndIf :custom things here End [/code] I managed to add first two worked great. Tag got reset as it loaded at start where you get Packs so during normal Tag selection it was gone.Player.AddPerk ReduceAssignSkillPoints Player.AddPerk WildWasteland Player.AddPerk Tag Thanks again using info you posted now. -----------------Edit--------------------I messed up on code tags---- Edited July 19, 2013 by chaosvenom Link to comment Share on other sites More sharing options...
Recommended Posts