31 lines
803 B
Plaintext
31 lines
803 B
Plaintext
#include "mn_i_pwfunctions"
|
|
|
|
|
|
void main()
|
|
{
|
|
// Get the PC who is in this conversation.
|
|
object oPC = GetPCSpeaker();
|
|
|
|
// Give 2000 experience to the PC.
|
|
GiveXPToCreature(oPC, 2000);
|
|
CreateItemOnObject("potioncrystal5", oPC);
|
|
|
|
// Take stuff from the PC.
|
|
DestroyObject(GetItemPossessedBy(oPC, "alchymihammer"));
|
|
|
|
DestroyObject(GetItemPossessedBy(oPC, "focussplinter1"));
|
|
DestroyObject(GetItemPossessedBy(oPC, "focussplinter2"));
|
|
DestroyObject(GetItemPossessedBy(oPC, "focussplinter3"));
|
|
TakeGoldFromCreature(20000, oPC, TRUE);
|
|
|
|
SetQuestStatus(oPC, "quest_0301", QUEST_COMPLETED);
|
|
|
|
effect eVFX;
|
|
object oSelf = GetPCSpeaker();
|
|
|
|
eVFX = EffectVisualEffect(VFX_FNF_ELECTRIC_EXPLOSION);
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVFX, oSelf);
|
|
|
|
}
|
|
|