16 lines
450 B
Plaintext
16 lines
450 B
Plaintext
#include "nw_i0_plotwizard"
|
|
void main()
|
|
{
|
|
object oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "GolemPlans");
|
|
DestroyObject(oItemToTake);
|
|
GiveGoldToCreature(GetPCSpeaker(), 1000);
|
|
PWSetMinLocalIntPartyPCSpeaker("p002state_Siagribo", 8);
|
|
PWSetMinLocalIntPartyPCSpeaker("p002state", 8);
|
|
|
|
PWGiveExperienceParty(GetPCSpeaker(), 300);
|
|
|
|
|
|
//resets quest for next party (I hope)
|
|
SetLocalInt(OBJECT_SELF, "p002began", 0);
|
|
}
|