Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

12 lines
314 B
Plaintext

// 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
}