Fallout 4
0 of 0

File information

Last updated

Original upload

Created by

charlieoctopus5000

Uploaded by

charlieoctopus5000

Virus scan

Safe to use

Tags for this mod

About this mod

Use regular expressions in <matchstring> whenever you call the Console's "help <matchstring> <filter> <form type>".
Type "help form-type <expression>" to get a listing of the <form type> collection.

Permissions and credits
From the Console's help:

usage: help <matchstring> <filter> <form type>

filters: 0-all 1-functions, 2-settings, 3-globals, 4-other forms
form type is 4 characters and is ignored unless the filter is 4.


This mod builds on the above command, featuring support for regular expressions in <matchstring>, including the following commands:

help /.*/ [
1|3]
For example, 
help /.*/ 1
 
(everything with <filter>=1-functions)

help /guess1|guess2/i 3
(only globals with 'guess1' or 'guess2' in their results, ignoring case)

help /.*/ 4 <form type>

For example, 
help /.*/ 4 weap

(everything with <form type> = WEAP)
Please note, for some large
<form type> sets, such as CELL and KYWD, the initial load can take several seconds.

Includes the convenience method:
help form-type or
help form-type /.*/
(list the <form type> collection)

The output for a given query depends on what DLCs and mods are installed.
For an installation with all the DLCs, and no mods installed, my results are:
  • 1,331 <filter=1-functions>
  • 1,908 <filter=3-globals>  
  • 43,184 <filter=4-other forms>, spread across 57 <form type> categories

For more details on ActionScript's support for regular expressions, see:
ActionScript 3.0 Regular Expressions