HoS_PRC8/_mod/_module/nss/coffin_act_move.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

12 lines
387 B
Plaintext

void main()
{
object oPC=GetPCSpeaker();
object oItem=CreateItemOnObject("vamp_it_coffin",oPC);
object oTarget=GetLocalObject(oPC,"oTarget");
object oOwner=GetLocalObject(oTarget,"oVampire");
SetLocalObject(oItem,"oOwner",oOwner);
DeleteLocalObject(oOwner,"oCoffin");
DeleteLocalInt(oOwner,"nCoffinPlaced");
if (GetIsObjectValid(oItem)) DestroyObject(oTarget);
}