20 lines
325 B
Plaintext
20 lines
325 B
Plaintext
|
#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);
|
||
|
|
||
|
}
|
||
|
|