Jump to content

SetTagSkills Help


chaosvenom

Recommended Posts

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

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 by chaosvenom
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...