Amon_PRC8/_module/nss/lycanpayload.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

15 lines
294 B
Plaintext

void main()
{
object oItem = GetObjectByTag("LycanFire");
object oPC = GetLastKiller();
object oDoor = GetObjectByTag("LycanForceDoor");
if(GetIsObjectValid(oItem) == TRUE)
{
SetLocked(oDoor,FALSE);
ActionOpenDoor(oDoor);
AssignCommand(oPC, PlaySound("as_hr_xwdrnoise5"));
}
}