2025/07/20 Update

Added PEPS AI.
Updated class & racialtypes 2DAs for the Lost Lands.
Full compile.
This commit is contained in:
Jaysyn904
2025-07-20 20:28:49 -04:00
parent fdbffdd730
commit 51e1a2a2b3
1773 changed files with 147537 additions and 829 deletions

View File

@@ -0,0 +1,15 @@
/*////////////////////////////////////////////////////////////////////////////////////////////////////
Script Name: 0c_summon_assoc
Programmer: Philos
//////////////////////////////////////////////////////////////////////////////////////////////////////
Conversation script to have the caller use nFeat from the feat.2da.
Param
nFeat - Feat number from the feat.2da.
*/////////////////////////////////////////////////////////////////////////////////////////////////////
#include "0i_associates"
void main()
{
int nFeat = StringToInt (GetScriptParam ("nFeat"));
ActionUseFeat(nFeat, OBJECT_SELF);
}