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

17 lines
382 B
Plaintext

//Put this OnEnter
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
if (GetItemPossessedBy(oPC, "playershandbook")!= OBJECT_INVALID)
return;
CreateItemOnObject("playershandbook", oPC);
//////////////////////////////////////////////////////
if (GetItemPossessedBy(oPC, "emotewand")!= OBJECT_INVALID)
return;
CreateItemOnObject("emotewand", oPC);
}