PWE_PRC8/_module/nss/pqquestcomp.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

18 lines
276 B
Plaintext

void main()
{
object oPC = GetPCSpeaker();
object oItem;
oItem = GetItemPossessedBy(oPC, "pixiehunterleade");
if (GetIsObjectValid(oItem))
DestroyObject(oItem);
CreateItemOnObject("pass", oPC);
CreateItemOnObject("pixiequest", oPC);
SetLocalInt(oPC, "pqquest", 3);
}