Recent content by Kimuji

  1. stats gump?

    Hey :) is that available anywhere ?
  2. Hiding at 120

    Hiding skill value is used against detecthidden skill value, so 120 is not useless you could always edit Hiding.cs any way you want: Original: int skill = Math.Min(100, (int)m.Skills[SkillName.Hiding].Value); int range = Math.Min((100 - skill) / 2 + 8, 18); //Cap of...
  3. Gift Giving System by Account Age

    Did you call at any point Register(GiftGiver giver) with your new class ?
  4. Needing help with 'Syntax' (if think) for Universal Storage Container

    Just add : public int SeedGeneration; And change _SeedGeneration to SeedGeneration No deletion. Add it to the Seed() constructors too...
  5. Needing help with 'Syntax' (if think) for Universal Storage Container

    Add at the end of deserialization method : it will update old ones. and to constructors : for new ones. Existing will not be deleted since you don't change what is saved/loaded. You can obviously try it in local ;)
  6. Needing help with 'Syntax' (if think) for Universal Storage Container

    No needs to add a saved property to seed. It could be calculated at creation/deserialization. switch (_PlantType) { case PlantType.CampionFlowers: case PlantType.Fern: case PlantType.TribarrelCactus...
  7. Needing help with 'Syntax' (if think) for Universal Storage Container

    I just edited the SeedListEntry of USK to add a new column. If your gardeners key gump doesn t look like this already (without the generation column) you may have not the last USK version.
  8. Needing help with 'Syntax' (if think) for Universal Storage Container

    Why not just display generation ? you could sort & filter them easily
  9. lightning arrow

    Check the OnHit Methods you have in: Scripts\Items\Equipment\Weapons\BaseWeapon.cs
  10. Item ID = Using a ID Wand

    It will not be enough. Identified flag is not serialized/deserialized anymore. if (GetSaveFlag(flags, SaveFlag.Identified)) { m_Identified = (version >= 6 || reader.ReadBool()); } So after reboot those items will be...
  11. VNC updated for ServUO pub58

    HttpUtility has been replaced by : WebUtility in System.Net package Edit Vitanex\Core\Services\WebAPI\WebAPI.cs add at top using System.Net; Replace occurence of HttpUtility with WebUtility (i.e. : HttpUtility.UrlEncode(value); => WebUtility.UrlEncode(value); )
  12. UODisc - a discord bot

    Hi, there is a bug in your selectcharacter command: first, : for (int i = 0; i < World.Mobiles.Count; i++) { Mobile m = World.Mobiles.ElementAt(i).Value; generate exceptions : System.ThrowHelper.ThrowInvalidOperationException: Collection was modified...
Back