HiddenTradition_PRC8/_module/nss/glyph_spk_strng.nss
2024-06-20 15:47:42 -04:00

27 lines
429 B
Plaintext

string sDeny;
/* Script generated by
Lilac Soul's NWN Script Generator, v. 1.5
For download info, please visit:
http://www.lilacsoul.revility.com */
//Put this OnEnter
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
if (GetItemPossessedBy(oPC, "tlk_demonglyph")== OBJECT_INVALID)
{
sDeny="You feel your pack to to shake violently";
SendMessageToPC(oPC, sDeny);
return;
}
}