2025/12/15 Update

Updated PEPS.
Hooked up new GUI event.
Updated baseitems.2da for new crafting items.
Updated nim tools.
Full compile.
This commit is contained in:
Jaysyn904
2025-12-16 20:00:39 -05:00
parent 26d9f612f4
commit c07a7138fb
951 changed files with 163507 additions and 17216 deletions

View File

@@ -0,0 +1,16 @@
/*//////////////////////////////////////////////////////////////////////////////
Script: 0c_if_com_script
Programmer: Philos
////////////////////////////////////////////////////////////////////////////////
Text Appears When script that returns TRUE the caller does have an ai combat
script set to sAIScript.
Param:
sAIScript - The special combat script to check.
*///////////////////////////////////////////////////////////////////////////////
#include "0i_associates"
int StartingConditional()
{
string sAIScript = GetScriptParam("sAIScript");
string sAICombatScript = GetLocalString (OBJECT_SELF, AI_COMBAT_SCRIPT);
return (sAIScript == sAICombatScript);
}