15 lines
470 B
Plaintext
15 lines
470 B
Plaintext
#include "nw_i0_plotwizard"
|
|
int StartingConditional()
|
|
{
|
|
int nShow = GetLocalInt(GetPCSpeaker(), "p001state") == 3;
|
|
if (nShow)
|
|
{
|
|
GiveGoldToCreature(GetPCSpeaker(), 2000);
|
|
PWSetMinLocalIntPartyPCSpeaker("p001state_MasterPhilip", 5);
|
|
PWSetMinLocalIntPartyPCSpeaker("p001state", 5);
|
|
PWGiveExperienceParty(GetPCSpeaker(), 300);
|
|
AddJournalQuestEntry("p001", 5, GetPCSpeaker(), TRUE, FALSE, FALSE);
|
|
}
|
|
return nShow;
|
|
}
|