-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
118 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Main | ||
|
||
on: | ||
push: | ||
branches: '**' | ||
tags: '*' | ||
|
||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run: | ||
uses: adya/pack-skse-mod/.github/workflows/pack.yml@main | ||
with: | ||
FOMOD_INCLUDE_PDB: true | ||
FOMOD_MOD_NAME: "Simple Activate SKSE" | ||
FOMOD_MOD_AUTHOR: "powerofthree" | ||
FOMOD_MOD_NEXUS_ID: "56767" | ||
FOMOD_SE_MIN_GAME_VERSION: '1.5' | ||
FOMOD_AE_NAME: 'SSE v1.6+ ("Anniversary Edition")' | ||
FOMOD_AE_DESCR: 'Select this if you are using Skyrim Anniversary Edition v1.6 or higher.' | ||
FOMOD_AE_MIN_GAME_VERSION: '1.6' | ||
FOMOD_REQUIRED_INSTALLATION_DIR: "Skyrim/Data" | ||
PUBLISH_ARCHIVE_TYPE: '7z' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "extern/CommonLibSSE"] | ||
path = extern/CommonLibSSE | ||
url = https://github.com/Ryan-rsm-McKenzie/CommonLibSSE | ||
url = https://github.com/powerof3/CommonLibSSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
[Hide All Text] | ||
|
||
;Hide all names and activation prompts | ||
NPCs = false | ||
Activators = false | ||
Containers = false | ||
Doors = false | ||
Flora = false | ||
Furniture = false | ||
Items = false | ||
Projectiles = false | ||
|
||
|
||
[Hide Button] | ||
|
||
;Hide activate button, eg. [E]. This setting may not work if you have HUD mods that bypass vanilla functionality | ||
NPCs = true | ||
Activators = true | ||
Containers = true | ||
Doors = true | ||
Flora = true | ||
Furniture = true | ||
Items = true | ||
Projectiles = true | ||
|
||
|
||
[Hide Text] | ||
|
||
;Hide activate text, eg. Talk, Pickpocket, Harvest, Sleep | ||
NPCs = true | ||
Activators = true | ||
Containers = true | ||
Doors = true | ||
Flora = true | ||
Furniture = true | ||
Items = true | ||
Projectiles = true | ||
|
||
|
||
[Steal/Pickpocket] | ||
|
||
;Item/NPC names turn red (or custom color defined below). | ||
Show Indicator Using Name = true | ||
|
||
;Color, in hex (default: red) | ||
Custom Indicator Color = #FF0000 | ||
|
||
|
||
[Owned] | ||
|
||
;Owned furniture name turns yellow (or custom color defined below). | ||
Show Indicator Using Name = true | ||
|
||
;Color, in hex (default: yellow) | ||
Custom Indicator Color = #FFFF00 | ||
|
||
|
||
[Locked] | ||
|
||
;Hide locked status (eg. Apprentice, Adept, Master) | ||
Hide Locked Tag = false | ||
|
||
;Set custom tag for all locked objects. Leave entry blank if you don't want to set it | ||
;No effect if Hide Lock Tag is true. | ||
Custom Locked Tag = <img src='DiamondMarker' width='10' height='15' align='baseline' vspace='5'>Locked | ||
|
||
;Locked object names turn yellow (or custom color defined below). | ||
Show Indicator Using Name = true | ||
|
||
;Color, in hex (default: yellow) | ||
Custom Indicator Color = #FFFF00 | ||
|
||
|
||
[Empty] | ||
|
||
;Hide empty container state | ||
Hide Empty Tag = true | ||
|
||
;Set custom tag for empty objects (eg. [Empty]). Leave entry blank if you don't want to set it | ||
;No effect if Hide Empty Tag is true. | ||
Custom Empty Tag = | ||
|
||
;Empty container names turn grey (or custom color defined below). | ||
Show Indicator Using Name = true | ||
|
||
;Color, in hex (default: grey) | ||
Custom Indicator Color = #808080 |
Submodule CommonLibSSE
added at
736231
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters