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

18 lines
552 B
Plaintext

void main()
{
object oPC=GetPCSpeaker();
object oMe=OBJECT_SELF;
object oWP=GetWaypointByTag("WP_GITHSHARE_04");
object oHench=GetNearestObjectByTag("GITHHENCHWAR",oPC,1);
if (oHench==OBJECT_INVALID||GetMaster(oHench)!=oPC)
{ // you don't have one
oHench=CreateObject(OBJECT_TYPE_CREATURE,"githhenchwar",GetLocation(oWP));
AddHenchman(oPC,oHench);
} // you don't have one
else
{ // you have one
SendMessageToPC(oPC,"I'm sorry but, you already have a henchman like her!!");
} // you have one
}