Lankhmar_PRC8/_module/nss/ent_jrnl_shclt9.nss

20 lines
325 B
Plaintext
Raw Permalink Normal View History

2025-04-03 12:54:47 -04:00
#include "x0_i0_partywide"
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
if (GetItemPossessedBy(oPC, "makosmagicala")== OBJECT_INVALID)
return;
// Give 10 experience (to party) to the PC.
GiveXPToAll(oPC, 10);
AddJournalQuestEntry("The Shark Cult of Lankhmar", 9, oPC, TRUE, FALSE);
}