WoR_PRC8/_module/nss/quest_bronnor_3.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

14 lines
319 B
Plaintext

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);
}