16 lines
221 B
Plaintext
16 lines
221 B
Plaintext
|
|
||
|
//Put this script OnEnter
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
if (GetItemPossessedBy(oPC, "itemchanger")!= OBJECT_INVALID)
|
||
|
return;
|
||
|
|
||
|
CreateItemOnObject("itemchanger", oPC);
|
||
|
|
||
|
}
|