RATDOG/_module/nss/0c_if_com_script.nss
Jaysyn904 51e1a2a2b3 2025/07/20 Update
Added PEPS AI.
Updated class & racialtypes 2DAs for the Lost Lands.
Full compile.
2025-07-20 20:28:49 -04:00

17 lines
677 B
Plaintext

/*//////////////////////////////////////////////////////////////////////////////
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);
}