Files
PoA_PRC8/_module/nss/0c_summon_assoc.nss
Jaysyn904 cbf0febd8b 2025/10/21 Update
Added PEPS AI.
Hopefully stopped "bleed" bug after being healed from dying.
Full compile.
2025-10-21 10:30:05 -04:00

18 lines
721 B
Plaintext

/*////////////////////////////////////////////////////////////////////////////////////////////////////
Script Name: 0c_summon_assoc
Programmer: Philos
//////////////////////////////////////////////////////////////////////////////////////////////////////
Conversation script to have the caller summon either an animal companion or
familiar associate.
Param
sAssociate - which associate to summon.
*/////////////////////////////////////////////////////////////////////////////////////////////////////
#include "0i_associates"
void main()
{
string sAssociate = GetScriptParam ("sAssociate");
if (sAssociate == "Familiar") SummonFamiliar ();
else if (sAssociate == "Companion") SummonAnimalCompanion ();
}