Initial commit

Initial commit
This commit is contained in:
Jaysyn904
2024-09-13 09:10:39 -04:00
parent 09dc8aec92
commit d1c309ae63
8437 changed files with 8727659 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
////////////////////////////////////////////////////////////////////////////////
// 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));
}