Files
RATDOG/_module/nss/0c_cast_polymorp.nss
Jaysyn904 ab163e6df6 2025/12/01 Update
Updated module for NWN:EE 37-17.
Updated NWNxEE libraries.
Updated PEPS.
Hooked up new PRC8 GUI module event.
Full compile.
2025-12-01 10:11:37 -05:00

16 lines
649 B
Plaintext

/*////////////////////////////////////////////////////////////////////////////////////////////////////
Script Name: 0c_cast_polymorp
Programmer: Philos
//////////////////////////////////////////////////////////////////////////////////////////////////////
Conversation script to have a henchman cast a polymorph spell.
int nSpell is the spell to cast.
*/////////////////////////////////////////////////////////////////////////////////////////////////////
#include "0i_items"
void main()
{
object oHenchman = OBJECT_SELF;
int nSpell = StringToInt (GetScriptParam ("nSpell"));
ActionCastSpellAtObject (nSpell, oHenchman, 255, TRUE);
}