Compare commits

...

18 Commits

Author SHA1 Message Date
Jaysyn904
eb723d0c38 2025/08/23 Update
Updated for PRC8 bugfixes.
2025-08-23 20:00:50 -04:00
Jaysyn904
eed77a105e 2025/08/15 Update
Updated for PRC8 update.
Fixed Master of the Void spawn.
2025-08-15 19:04:33 -04:00
Jaysyn904
47c7459fb9 2025/07/20 Update
Added PEPS AI.
Full compile.
2025-07-20 19:17:01 -04:00
Jaysyn904
e5fe988914 Update README.md 2025-06-18 00:14:40 -04:00
Jaysyn904
e321a4976f Updated for epic PrC expansion
Updated for epic PrC expansion.
Full compile.
2025-06-08 14:08:46 -04:00
Jaysyn904
0ab4e8d565 Tweaked XP System
Tweaked XP System.
Full compile.
2025-06-07 01:07:52 -04:00
Jaysyn904
368fbb25aa Added PC Deleter NPC
Added PC Deleter NPC.  Full compile.
2025-04-28 12:25:49 -04:00
Jaysyn904
7ad5a56051 Update .gitignore 2025-04-03 22:52:57 -04:00
Jaysyn904
bf978b44a0 Removed _release folder
Removed _release folder
2025-04-03 22:52:00 -04:00
Jaysyn904
576d20db19 Updated journal entries
Updated journal entries.  Full compile.  Updated release archive.
2025-02-27 12:40:25 -05:00
Jaysyn904
7f1e0b1070 Update for PRC8 functions update
Update for PRC8 functions update.  Updated spells & abilities haks.  Full compile.  Updated release archive.
2025-02-10 14:06:04 -05:00
Jaysyn904
82994dfc26 Updated for NWNEE 37-13
Updated for NWNEE 37-13.  Updated NWNxEE.  Full compile. Updated release archive.
2025-01-10 20:29:31 -05:00
Jaysyn904
a8639499df PRC8 content update
PRC8 content update.  Full compile.  Updated CEP3 merge content.  Updated release archive.
2024-12-27 13:05:55 -05:00
Jaysyn904
aa94e7e64b Gave system NPCs Archetypal Form
Gave system NPCs Archetypal Form.  Updated release archive.
2024-12-03 12:46:01 -05:00
Jaysyn904
522ac455fd Added NESS
Added NESS.  Hopefully fixed Master of the Void spawn in.  Full compile.  Updated release archive.
2024-10-09 13:59:44 -04:00
Jaysyn904
1c0c513483 Update Underworld 2 [PRC8-CEP3].7z
Updated CEP merge content
2024-09-11 09:10:21 -04:00
Jaysyn904
b14861c247 Update README.md 2024-09-10 11:28:02 -04:00
Jaysyn904
bb786da399 Added ACP v4.1
Added ACP v4.1  Full compile.  Updated release archive.
2024-09-10 10:37:51 -04:00
2601 changed files with 81790 additions and 7429 deletions

1
.gitignore vendored
View File

@@ -3,3 +3,4 @@ _module/Underworld 2 \[PRC8-CEP3\].mod
*.hak
*.md5
*.mod
/_release

View File

@@ -1,3 +1,8 @@
# Underworld II [PRC-CEP3]
Repository for the PRC'd version of the Underworld 2 multiplayer action module.
Repository for the PRC'd version of the Underworld 2 multiplayer action module.
## Requirements
* [PRC8](https://gitea.raptio.us/Jaysyn/PRC8/releases)
* [CEP 3](https://neverwintervault.org/project/nwnee/hakpak/combined/cep-3-community-expansion-pack)
* [ACP v4.1](https://neverwintervault.org/project/nwnee/hakpak/alternate-combat-animations-pack-acp-41-hak-and-nit-automated-wizard-version)

View File

@@ -0,0 +1,9 @@
:loop
"C:\NWN Work\nwnsc.exe" -o -w -n "C:\Games\Steam\steamapps\common\Neverwinter Nights" -i "D:\NWN Repos\UW2_PRC8\_haks\poa_exp_abilities";"D:\NWN Repos\PRC8\nwn\nwnprc\trunk\include" "D:\NWN Repos\UW2_PRC8\_haks\poa_exp_abilities\*.nss"
if %errorLevel% == -1 goto :loop
:loop
"C:\NWN Work\nwnsc.exe" -o -w -n "C:\Games\Steam\steamapps\common\Neverwinter Nights" -i "D:\NWN Repos\UW2_PRC8\_haks\poa_exp_spells";"D:\NWN Repos\PRC8\nwn\nwnprc\trunk\include" "D:\NWN Repos\UW2_PRC8\_haks\poa_exp_spells\*.nss"
if %errorLevel% == -1 goto :loop
pause

View File

@@ -11,5 +11,10 @@
"Path": "./poa_exp_spells/",
"CompileModels": false
},
{
"Name": "uw2_prc8_top",
"Path": "./uw2_prc8_top/",
"CompileModels": false
},
]
}

View File

@@ -261,7 +261,7 @@ void main()
if (nTotem)
{
int nTotemRage = GetMaxEssentiaCapacityFeat(oPC) - nEssentia;
int nExtraEss = max(nTotem/2, 1);
int nExtraEss = PRCMax(nTotem/2, 1);
int nBoost;
if (nExtraEss >= nTotemRage)
{

Some files were not shown because too many files have changed in this diff Show More