Code:
PackItem(new Gold(1000)); // Starting gold can be customized here
PackItem(new Dagger());
PackItem(new SkillBall());
PackItem(new StatBall());
PackItem(new WeaponToken());
PackItem(new Bandage(150));
EquipItem(new YoungPlayerTalisman());
if (m.Race != Race.Gargoyle)
{
PackItem(new NewbShield());
EquipItem(new NewbArms());
EquipItem(new NewbCap());
EquipItem(new NewbChest());
EquipItem(new NewbGloves());
EquipItem(new NewbGorget());
EquipItem(new NewbLegs());
}
else
PackItem(new NewbShieldGarg());
The EquipItem Newbset will only drop in the bag and characters will not spawn with the items on.
I have also removed all other armor and clothing equips for humans and elves in CharacterCreation.cs
Any help would be great!