Fallout4 Console: Difference between revisions

From wikinotes
No edit summary
 
(7 intermediate revisions by the same user not shown)
Line 2: Line 2:
<blockquote>
<blockquote>
{| class="wikitable"
{| class="wikitable"
|-
| fallout4 console commands || https://fallout.fandom.com/wiki/Fallout_4_console_commands
|-
|-
| skyrim console commands || https://en.uesp.net/wiki/Skyrim:Console
| skyrim console commands || https://en.uesp.net/wiki/Skyrim:Console
Line 15: Line 17:
player.moveto  {item/player/location code}
player.moveto  {item/player/location code}
player.additem {itemcode}
player.additem {itemcode}
help                            # print all items/codes
help  {itemname} 4              # get item code (ex: 'help cloth 4')
help  {itemname} 4              # get item code (ex: 'help cloth 4')
bat file.txt                      # execute all console-commands from a .txt file
</source>
</source>


== character customization ==
== Character Customization ==
<source lang="bash">
<blockquote>
<syntaxhighlight lang="bash">
showlooksmenu  14  # showracemenu is deprecated
showlooksmenu  14  # showracemenu is deprecated
# NOTE: if your camera gets stuck, enter vats (hold Q) then exit (Tab)
# NOTE: if your camera gets stuck, enter vats (hold Q) then exit (Tab)
</source>
</syntaxhighlight>
</blockquote><!-- Character Customization -->


== items ==
== Items ==
<blockquote>
item codes
item codes
{| class="wikitable"
{| class="wikitable"
Line 40: Line 47:
|-
|-
|}
|}
</blockquote><!-- Items -->


== locations ==
== Locations ==
<blockquote>
Fast travel is performed using either <code>player.moveto {item/npccode}</code> or <code>coc {locationname}</code>.
Fast travel is performed using either <code>player.moveto {item/npccode}</code> or <code>coc {locationname}</code>.


See [[Fallout4 Locations]].
See [[Fallout4 Locations]].
</blockquote><!-- Locations -->


== quests ==
== Quests ==
<source lang="bash">
<blockquote>
<syntaxhighlight lang="bash">
setstage <quest/formid> <stage#>  # set progress
setstage <quest/formid> <stage#>  # set progress
player.modav experience <amount>  # add experience
player.modav experience <amount>  # add experience
</source>
</syntaxhighlight>


<source lang="bash">
<syntaxhighlight lang="bash">
sqt                          # list current quests
sqt                          # list current quests
completequest <questid>      # complete quest?
completequest <questid>      # complete quest?
Line 59: Line 70:
movetoqt <questid>          # move to quest marker
movetoqt <questid>          # move to quest marker
sqs <questid>                # list stages of quest
sqs <questid>                # list stages of quest
</source>
</syntaxhighlight>
</blockquote><!-- Quests -->
</blockquote><!-- console basics -->


</blockquote><!-- console basics -->
= Mods =
<blockquote>
== Troubleshoot Loaded Settings ==
<blockquote>
<syntaxhighlight lang="bash">
saveini                    # saves a .ini with current settings
                            # (`Data/${LAST_LOADED_PLUGIN}.ini` - loaded if (plugin.esp) active)
refini                      # load/reapply all settings from Skyrim.ini, .ini's matching loaded .esp files
ShowGlobalVars              # print all global vars
set ${GLOBAL_VAR} ${VALUE}  # set a global var
</syntaxhighlight>
</blockquote><!-- Troubleshoot Loaded Settings -->


= Valdacil/DEF_UI Item/Icon Codes =
== Valdacil/DEF_UI Item/Icon Codes ==
<blockquote>
<blockquote>
{{ NOTE |
{{ NOTE |
Line 78: Line 102:


== weapons ==
== weapons ==
<source lang="yaml">
<syntaxhighlight lang="yaml">
# ranged
# ranged
'pipe pistol (.38)':        [2p HMP]    # M9 pistol, pipe pistol
'pipe pistol (.38)':        [2p HMP]    # M9 pistol, pipe pistol
Line 88: Line 112:
# melee
# melee
'Chinese Officer Sword':    [4dd Jiang]
'Chinese Officer Sword':    [4dd Jiang]
</source>
</syntaxhighlight>


== clothing ==
== clothing ==
<source lang="yaml">
<syntaxhighlight lang="yaml">
'fedora':  [2c hat]
'fedora':  [2c hat]
'gas mask': [2f Full-Mask]
'gas mask': [2f Full-Mask]
Line 106: Line 130:
'bottoms':    6b Bottom
'bottoms':    6b Bottom
'boots/shoes': 6d Boots
'boots/shoes': 6d Boots
</source>
</syntaxhighlight>


== armour ==
== armour ==
<source lang="yaml">
<syntaxhighlight lang="yaml">
'leather':  |1q Leather|
'leather':  |1q Leather|
 
</syntaxhighlight>
</source>
</blockquote><!-- Valdacil/DEF_UI Item/Icon Codes -->
</blockquote><!-- validacil defui item codes -->
</blockquote><!-- Mods -->

Latest revision as of 01:40, 12 November 2021

Documentation

fallout4 console commands https://fallout.fandom.com/wiki/Fallout_4_console_commands
skyrim console commands https://en.uesp.net/wiki/Skyrim:Console
Fallout4 quest IDs https://fallout.fandom.com/wiki/Fallout_4_quests (use formid/stageid)

Console Basics

player.moveto  {item/player/location code}
player.additem {itemcode}
help                             # print all items/codes
help  {itemname} 4               # get item code (ex: 'help cloth 4')
bat file.txt                      # execute all console-commands from a .txt file

Character Customization

showlooksmenu  14  # showracemenu is deprecated
# NOTE: if your camera gets stuck, enter vats (hold Q) then exit (Tab)

Items

item codes

cloth 000aec5f
adhesive 001bf72e
oil 001bf732
gear 0006907e
.38 ammo 0004ce87
stimpack 00023736

Locations

Fast travel is performed using either player.moveto {item/npccode} or coc {locationname}.

See Fallout4 Locations.

Quests

setstage <quest/formid> <stage#>  # set progress
player.modav experience <amount>  # add experience
sqt                          # list current quests
completequest <questid>      # complete quest?
setstage <questid> <stage#>  # set progress
getstage <questid>           # list progress on quest
movetoqt <questid>           # move to quest marker
sqs <questid>                # list stages of quest

Mods

Troubleshoot Loaded Settings

saveini                     # saves a .ini with current settings 
                            # (`Data/${LAST_LOADED_PLUGIN}.ini` - loaded if (plugin.esp) active)
refini                       # load/reapply all settings from Skyrim.ini, .ini's matching loaded .esp files
ShowGlobalVars              # print all global vars
set ${GLOBAL_VAR} ${VALUE}  # set a global var

Valdacil/DEF_UI Item/Icon Codes

NOTE:

All of these codes can be found in steamapps/common/Fallout 4/Data/Interface/DEF_CONF/DEF_INV_TAGS.xml.

I uncommented the following so that I could assign them myself:

  • 6a Top
  • 6b Bottom
  • 6c Sneakers
  • 6d Boots


weapons

# ranged
'pipe pistol (.38)':        [2p HMP]     # M9 pistol, pipe pistol
'Colt N9 (10mm)':           [2m HP]
'Remington Rifle (.308)':   [2e SAR]
'revolver (.44)':           [2lb REV]    # kelogg's revolver, S&W
'laser rifle (cell)':       [2k LR]      # righteous authority, etc

# melee
'Chinese Officer Sword':    [4dd Jiang]

clothing

'fedora':   [2c hat]
'gas mask': [2f Full-Mask]

# under-armour
'vaultsuit':  [1s Vault-Tec]
'biosuit':    [1c Biosuit]

# over-armour
'trenchcoat': [1l Rugged]

# mods only
'shirts':      6a Top
'bottoms':     6b Bottom
'boots/shoes': 6d Boots

armour

'leather':  |1q Leather|