Alcsaar
Member
Is it possible to give a mob access to more than one Weapon abiltiy using public override WeaponAbility GetWeaponAbility() ?
This obviously doesn't work, can't return twice loll, but anyway, is that possible?
If not, how would I go about doing this? I understand Xmlspawner2 might have this functionality, but I'm clueless on that.
public override WeaponAbility GetWeaponAbility()
{
return WeaponAbility.ConcussionBlow;
return WeaponAbility.CrushingBlow;
}
{
return WeaponAbility.ConcussionBlow;
return WeaponAbility.CrushingBlow;
}
This obviously doesn't work, can't return twice loll, but anyway, is that possible?
If not, how would I go about doing this? I understand Xmlspawner2 might have this functionality, but I'm clueless on that.