19 lines
517 B
Plaintext
19 lines
517 B
Plaintext
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
// Give Specific Items - On Client Enter
|
||
|
// opw_give_robe
|
||
|
// By Don Anderson
|
||
|
// dandersonru@msn.com
|
||
|
//
|
||
|
// Gives a Basic Brown Robe
|
||
|
//
|
||
|
// This script is called from the DM
|
||
|
//
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oPC = GetEnteringObject();
|
||
|
object oRobe = CreateItemOnObject("nw_cloth007",oPC);
|
||
|
AssignCommand(oPC,ActionEquipItem(oRobe,INVENTORY_SLOT_CHEST));
|
||
|
}
|