Files
MMD_PRC8/_module/nss/0c_cast_polymorp.nss
Jaysyn904 7598075698 2025/12/15 Update
Updated PEPS.
Added respawn pop-up for petrification.
Updated Markshire Nomeclature for NPC names / titles.
Hooked up new PRC8 GUI event.
Updated nim tools.
2025-12-15 20:29:46 -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);
}