Skip to content

Commit

Permalink
Merge pull request #18 from Gitjas/master
Browse files Browse the repository at this point in the history
update to v11
  • Loading branch information
Gitjas authored Apr 13, 2023
2 parents fff5599 + ee12cf5 commit 5d7fb1b
Show file tree
Hide file tree
Showing 94 changed files with 5,102 additions and 1,017 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/InfinityAutoPackager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@
on:
release:
types: [published]
workflow_dispatch:

jobs:
InfinityAutoPackager:
if: github.ref_type == 'tag'
runs-on: ubuntu-latest
steps:

Expand All @@ -25,8 +28,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload iemod package to latest release
uses: svenstaro/upload-release-action@v1-release
if: github.ref != 'refs/heads/master'
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ steps.CreateIEModZipPackage.outputs.PackageBaseName }}.iemod
Expand All @@ -35,11 +37,10 @@ jobs:
overwrite: true

- name: Upload zip package to latest release
uses: svenstaro/upload-release-action@v1-release
if: github.ref != 'refs/heads/master'
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ steps.CreateIEModZipPackage.outputs.PackageBaseName }}.zip
asset_name: ${{ steps.CreateIEModZipPackage.outputs.PackageBaseName }}.zip
tag: ${{ github.ref }}
overwrite: true
overwrite: true
8 changes: 4 additions & 4 deletions imoen_forever/baf/imoen_imoen2_2.baf
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,26 @@
IF
InParty(Myself)
Global("C#IM_ImoenStays","GLOBAL",1)
Global("C#IM_DialogueTimerSet","GLOBAL",0)
Global("C#IM_DialogueTimerSet","LOCALS",0)
THEN
RESPONSE #100
RealSetGlobalTimer("C#IM_DialogueTimer","GLOBAL",800)
RealSetGlobalTimer("C#IM_IrenicusTimer","GLOBAL",14400) // three hours
SetGlobal("C#IM_DialogueSoA","GLOBAL",1)
SetGlobal("C#IM_DialogueTimerSet","GLOBAL",1)
SetGlobal("C#IM_DialogueTimerSet","LOCALS",1)
END

/* set dialogue timer after joining in Spellhold */
IF
InParty(Myself)
GlobalGT("Chapter","GLOBAL",3)
!Global("C#IM_ImoenStays","GLOBAL",1)
GlobalLT("C#IM_DialogueTimerSet","GLOBAL",2)
GlobalLT("C#IM_DialogueTimerSet","LOCALS",2)
THEN
RESPONSE #100
RealSetGlobalTimer("C#IM_DialogueTimer","GLOBAL",700)
SetGlobal("C#IM_DialogueSoA","GLOBAL",51)
SetGlobal("C#IM_DialogueTimerSet","GLOBAL",2)
SetGlobal("C#IM_DialogueTimerSet","LOCALS",2)
END


Expand Down
4 changes: 2 additions & 2 deletions imoen_forever/imoen_forever.ini
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ LabelType = GloballyUnique

Type = Tweak_early

Before = ACBre, atweaks, c#anotherfinehell, c#endlessbg1, cdtweaks, EET_end, NPC, Quest, transitions
Before = atweaks, cdtweaks, EET_end

After = bg2fixpack, EET
After = c#anotherfinehell, c#sodboabri, c#sodtweaks, bg2fixpack, EET
Loading

0 comments on commit 5d7fb1b

Please sign in to comment.