15 lines
220 B
Plaintext
15 lines
220 B
Plaintext
|
//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);
|
||
|
|
||
|
}
|