Files
Alangara_PRC8/_module/nss/0c_use_feat.nss
Jaysyn904 b86cae1be0 2025/12/20 Update
Added PEPS.
Hooked up new GUI event.
Added PRC8 Journal entries.
Updated nim tools.
Full compile.
2025-12-20 15:15:02 -05:00

16 lines
612 B
Plaintext

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