Aantioch_Infernum/_module/nss/give_dragonorb.nss
Jaysyn904 22947ad4b6 Initial Upload
Initial Upload
2023-08-08 16:22:17 -04:00

12 lines
320 B
Plaintext

// NPC Make Script
#include "nw_i0_tool"
void main()
{
object oPC = GetPCSpeaker();
CreateItemOnObject("dragonorb", oPC); // Item ResRef here
GiveXPToCreature(GetPCSpeaker(), 150); // XP Value here
DeleteLocalInt(GetPCSpeaker(), "Merimesiss");
SetLocalInt(GetPCSpeaker(), "MerimesissComp", 1);
}