ThreeTen22 / skyrim-plugin-decoding-project

Automatically exported from code.google.com/p/skyrim-plugin-decoding-project
1 stars 0 forks source link

Filter by Record Flags #99

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Describe the desired look and feel.

The ability to search via record flags - namely disabled.

Outline the goals/benefits of the enhancement

This can help folks clean there mods of disabled, useless (when not enabled by 
anything) references that aren't easily found in the GECK (they are rendered 
normally). Or look for a certain flag used rarely by records and is hard to 
find.

Original issue reported on code.google.com by harkness...@yahoo.com on 13 Jan 2013 at 6:16

GoogleCodeExporter commented 9 years ago
It is possible to write a script which will dump desired records to messages 
tab, then you can ctrl+dblclick on formid number to jump to that record.
In your case, modify newscript.pas to
if GetIsInititiallyDisabled(e) then AddMessage('Processing: ' + FullPath(e));

Original comment by zila...@gmail.com on 19 Jan 2013 at 10:12

GoogleCodeExporter commented 9 years ago
It was GetIsInitiallyDisabled, but it worked! Thanks, this tools is effing 
amazing! I do wonder though, do you have a list of functions? (I'm assuming 
they are called functions, I've little experience coding outside of C and even 
then that was back in High School) I pick this stuff up very easily.

Original comment by harkness...@yahoo.com on 20 Jan 2013 at 5:49

GoogleCodeExporter commented 9 years ago
No documentation for now, only available demo scripts or looking directly in 
the source code. Better ask me directly if you need help, via PM on official 
bethesda forum or by email.

Original comment by zila...@gmail.com on 20 Jan 2013 at 5:14