UW2_PRC8/_module/nss/giveappearncwand.nss

15 lines
220 B
Plaintext
Raw Permalink Normal View History

2023-09-25 20:24:01 -04:00
//Put this script OnEnter
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
if (GetItemPossessedBy(oPC, "sf_wingwand")!= OBJECT_INVALID)
return;
CreateItemOnObject("sf_wingwand", oPC);
}