PoA_PRC8/_module/nss/addspellentry.nss
Jaysyn904 1ddbeca4f1 Update for NWN .35
Update for NWN .35
2023-08-01 20:16:07 -04:00

19 lines
290 B
Plaintext

//Put this script OnEnter
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
int DoOnce = GetLocalInt(oPC, GetTag(OBJECT_SELF));
if (DoOnce==TRUE) return;
SetLocalInt(oPC, GetTag(OBJECT_SELF), TRUE);
//AddJournalQuestEntry("spells", 1, oPC, FALSE, FALSE);
}