HoS_PRC8/_mod/_module/nss/create_undead_hu.nss

12 lines
314 B
Plaintext
Raw Permalink Normal View History

2024-11-25 19:36:07 -05:00
// make undead hunter
void main()
{
object oWP=GetWaypointByTag("POST_undeadhunter");
object oCR;
if (oWP!=OBJECT_INVALID)
{ // create undead hunter
oCR=CreateObject(OBJECT_TYPE_CREATURE,"undeadhunter",GetLocation(oWP));
SetAILevel(oCR,AI_LEVEL_NORMAL);
} // create undead hunter
}