Alangara_PRC8/_module/nss/bastorian_rew_3.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

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("potioncrystal3", 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);
}