Files
Anphillia_PRC8/_module/nss/0c_cast_polymorp.nss
Jaysyn904 d0a4ee6f1f 2025/11/30 Update
Updated for NWN:EE 37-17
Updated NWNxEE libraries.
Updated nim tooling
Updated PEPs
Associated new GUI module event script.
Full compile.
2025-12-01 00:00:34 -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);
}