-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewiring of help component and other residual fixes
- Loading branch information
1 parent
ecf5c90
commit d6b6cab
Showing
8 changed files
with
236 additions
and
73 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
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,44 @@ | ||
// 57 is the baseline "shout" shout | ||
// 119 is for dw#innhl and dw#urbhl | ||
// we keep 57 for BG2 compatibility | ||
|
||
IF | ||
Allegiance(Myself,NEUTRAL) | ||
OR(7) | ||
AttackedBy([GOODCUTOFF.0.0.0.0.SUMMONED],DEFAULT) | ||
AttackedBy([PC],DEFAULT) | ||
AttackedBy([FAMILIAR],DEFAULT) | ||
AttackedBy([ALLY],DEFAULT) | ||
AttackedBy([CONTROLLED],DEFAULT) | ||
AttackedBy([CHARMED],DEFAULT) | ||
SpellCastOnMe([GOODCUTOFF.0.0.0.0.SUMMONED],0) | ||
THEN | ||
RESPONSE #100 | ||
Shout(57) | ||
Shout(119) | ||
Continue() | ||
END | ||
|
||
IF | ||
HitBy([GOODCUTOFF],CRUSHING) | ||
THEN | ||
RESPONSE #100 | ||
Shout(57) | ||
Shout(119) | ||
Continue() | ||
END | ||
|
||
IF | ||
OR(2) | ||
Heard([ANYONE],119) | ||
Heard([ANYONE],57) | ||
Allegiance(Myself,NEUTRAL) | ||
|
||
THEN | ||
RESPONSE #100 | ||
SetGlobalTimer("runfromPC","LOCALS",60) | ||
Continue() | ||
END | ||
|
||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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
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