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

12 lines
293 B
Plaintext

#include "header_sounds"
void main()
{
object oPC=GetEnteringObject();
if (GetLocalInt(oPC,"nIsVampire")==TRUE)
{ // vampire
SetLocalInt(oPC,"nSunSafe",TRUE);
SendMessageToPC(oPC,"You feel safe from the sun here.");
AssignCommand(oPC,fnSoundAlert());
} // vampire
}