Recent content by Naviehs

  1. Enabling rising tide

    Its related to the point system the easiest way to disable it is to say [seasonsystemgump in game and to manually disable it.
  2. ConPVP Tournaments

    Anyone managed to set up an actual tournament with ConPVP? I can set up normal duel arenas but I cannot [add eventcontroller which is required for tournaments Thank you!
  3. Tent Vet Reward

    Im having an issue with the new vet reward, I managed to make is so you cant place it by houses but I can still place it over rocks , trees etc... Anyone has a fix? // public override void OnDoubleClick( Mobile from ) { if (TentCheck(from)==false) {...
  4. Overhead

    Is there a way to add overhead titles post AOS? There is not many "OverheadTitle" mention in the whole repo There are some in TitlesMenu.cs (5 results) Line 563: User.OverheadTitle = TitleSelected == 999999 ? MasteryInfo.GetTitle(User) : "the " +...
  5. Playermobile Changes

    I believe I did everything like you said.. Not sure why Im still getting the error (I even tried with the brackets)
  6. Playermobile Changes

    Very well explained! About the "writer.Write(34); " do I need to increase it by one for every bool/int I add?
  7. Playermobile Changes

    I wanted to add a few simple bools to playermobile.cs but now its deleting playermobiles on restart. Im guessing I need to modify serialize/deserialize, anyone can explain me like Im 5 or has a tutorial on how to do so? Thank you!
  8. Version Question!

    I was wondering, in your opinion, which version of UO would be the best for UOR ? IE 6.a.b.c.? Thank you!
  9. Stop "perching"

    I was wondering if there would be a way to make it so monsters would walk or teleport back to their xmlspawner when theyre getting damaged and not being able to damage after a certain time? Would it be better to modify BaseAI or MeleeAI? Thank you!
  10. Notoriety Issue

    For weird reasons, casting beneficial spells on a criminal/murderer does not make innocent criminal Would it be something wrong in Spell or Notoriety? Could someone save me a lot of headaches and post a decent Notoriety.CS :) ? It seems like the even the most recent one has some conflicts with pets
  11. Wiping Gauntlets/Doom Points?

    Would there be a way to do IE [global set dungeonpoint doom 0 where playermobile?
  12. Wiping Gauntlets/Doom Points?

    Is there a way to do something like this? Considering dungeon points are persistent and stored in a .bin files, I was wondering if there was a way to wipe the players points for dungeon points such as gauntlets/doom/despise crystal etc.. TY!
  13. Random target

    I am aware of the ArrayList toEat = new ArrayList(); IPooledEnumerable eable = GetMobilesInRange(3); foreach (Mobile m in eable) { […] But what if I wanted the mobile to pick a random target instead of "each of the mobile in range"? I...
  14. Cant point my finger on crash issue

    Thank you! I will try this :)
  15. Cant point my finger on crash issue

    System.InvalidOperationException: Collection was modified; enumeration operation may not execute. at System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) at System.Collections.Generic.List`1.Enumerator.MoveNextRare() at...
Back