WoR_PRC8/_module/nss/quest_bronnor_3.nss

14 lines
319 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
void main()
{
// Get the PC who is in this conversation.
object oPC = GetPCSpeaker();
// Take "Bros_Locket" from the PC.
DestroyObject(GetItemPossessedBy(oPC, "Bros_Locket"));
// Give 1200 experience to the PC.
GiveXPToCreature(oPC, 1200);
CreateItemOnObject("it_sharpeningsto", oPC);
}