Recent content by Taryn

  1. Taryn

    New Map

    If you are trying to keep your Tram or Fel maps, this may not work without UltimaLive. If you don't care about either the tram or fel map. You will need to change your Map32 files to replace either Map0 or Map1. Once that is done you will need to update: RegisterMap (32, 6, 6, 6144, 4096, 3...
  2. Taryn

    New Map

    Someone may correct me if I am wrong. Without modifications the client won't support additional maps. That isn't to say you can't replace an existing map with a new one. You can create multiple "copies" of the map. So registering a map of 32, but referencing a map 0 for example would work...
  3. Taryn

    New Map

    Do you have UltimaLive installed?
  4. Taryn

    Multiple Instances of the same SuperGump?

    Does anyone know of a way to allow a supergump to be opened in multiple instances at once. For example opening different books that all use the same base supergump to display the content at the same time.
  5. Taryn

    Is it possible to add multiple specific resource types to mobs?

    Another option is to override onCarve on the creature. public override void OnCarve(Mobile from, Corpse corpse, Item with) { base.OnCarve(from, corpse, with); //bool CanUse = from.CheckSkill(SkillName.Anatomy, 30, 70);//If you want to put in a skill...
  6. Taryn

    This is a Nice Little Script - but it has me beat - Help?

    I took a quick swag at the issue you were having. The reason for the null error is that the Target isn't getting the post value. The post value isn't being passed from the gump because it doesn't have a reference to postpiece value. So you have to add the post into the gump via the constructor...
Back