Rune_PRC8/_module/nss/opw_give_robe.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

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));
}