Recent content by drewwales

  1. Custom Weapons and their attributes

    But that already contains new LootPackItem(typeof(BaseWeapon) Tried it anyway but still no luck.
  2. Custom Weapons and their attributes

    Used your code and still only these get applied (did it 5 times). Still nothing randomly gets added like the dagger image previously shown.
  3. Custom Weapons and their attributes

    I've done this and still nothing gets added. See the custom dagger and normal dagger that dropped in the images below. attached the code and the original dagger. the only parts modified in the chaos dagger are public override void GetDamageTypes( Mobile wielder, out int phys, out int fire, out...
  4. Custom Weapons and their attributes

    That's great to know to when i do some skill specific items thanks dude! but where do i edit the loot tables? is it in loot.cs?
  5. Custom Weapons and their attributes

    I want those damage types as they are. What I want is when they drop on the mob random magical properties get added. For this I've been told to add them to loot tables. Just not sure where to find them
  6. Custom Weapons and their attributes

    I'm guessing that would be in Loot.cs? I'm fairly new to servUO as i used to use Sphere lol
  7. Custom Weapons and their attributes

    Morning All, I have a question in regards to custom weapons So I copied the dagger script and changed a few things. such as name etc and changed the damage a little bit. My query is, how come when ever this item drops on a corpse, it doesn't add random attribute like the normal dagger does...
  8. Level System Extreme

    got it all sorted now awesome work! onlything with weapon levels required level 112 for a double axe? can't br right can it?
  9. Level System Extreme

    this looks like great work. I'm moving from sphere so not a great load of knowledge yet. if i could get a fresh 57.3 repo with this pre set up id be much appreciated and give credit on the shards website.
  10. Level System Extreme

    Do you have a blank 57.3 repo with the system installed?
  11. Level System Extreme

    Ok will take a look and see what i find :)
  12. Level System Extreme

    This worked. But BaseVendor needs using Server.Engines.LevelSystemExtAtt; It would seem that LevelSystemExtAtt is missing from the system.
  13. Level System Extreme

    removed using Server.Engines.LevelSystemExtAtt; using Server.Engines.XmlSpawnerExtMod; and now get. it looks like im missing the file with LevelSystemExtAtt in maybe? downloaded the scripts popped in so is the download missing LevelSystemExtAtt
  14. Level System Extreme

    top of my skillcheck.cs #region References using System; using Server.Engines.Quests; using Server.Factions; using Server.Items; using Server.Mobiles; using Server.Multis; using Server.Regions; using Server.Spells.SkillMasteries; using Server.Engines.LevelSystemExtAtt; using...
  15. Level System Extreme

    I'm also getting this
Back