Search results

  1. Djeryv

    Ultima Adventures - A full featured, content packed offline/online server

    I will chime in here... The Enhanced Client is what Broadsword has for their game...which reworks the interface and changes some graphics. I think it sucks but I played with the classic client for years. Then you have the Classic Client that is the 2D one most of us are used to...with the now...
  2. Djeryv

    Ultima Adventures - A full featured, content packed offline/online server

    In my experience, this is a ClassicUO issue. I ran into it...I think twice...since playing the game. I usually just get a new/fresh copy of ClassicUO and it goes away. https://ci.appveyor.com/project/andreakarasho/classicuo/build/artifacts
  3. Djeryv

    Is the Ultima Odyssey thread no more?

    Yup...that is my website/forums for my Ultima related projects. Not anymore. Well, RunUO didn't disappear but it sure turned into a shit show of spammed junk posters where there was a single moderator from forever-ago that would log in once a month to clean up the mess. I was understandably...
  4. Djeryv

    Paperdoll modifications

    When I removed those paperdoll graphics I could never hover over the spot anymore...so it works fine probably because there is no image in the GUMP files to hover over.
  5. Djeryv

    IsParagon = False

    Maybe that check should go in here instead? It is what we did similar for modding RunUO long ago. public static bool CheckConvert(BaseCreature bc, Point3D location, Map m) { if (Array.IndexOf(Maps, m) == -1) return false; if (bc is...
  6. Djeryv

    IsParagon = False

    Then according to the paragon script...I can't see how his mobile is saying "paragon" and turning gold. As that FALSE setting should have stopped it from happening. public static void Convert(BaseCreature bc) { if (bc.IsParagon || !bc.CanBeParagon)...
  7. Djeryv

    IsParagon = False

    I am pretty sure it actually needs to be this... public override bool CanBeParagon => false;
  8. Djeryv

    Double Partial Hue?

    The client handles only one color to be chosen at a time for partial hue. The only real way to do what you are trying to do is to have the plant be an addon instead of item so you can control the color of the pieces that make up the addon. It just means you need to create a deed that players use...
  9. Djeryv

    Paperdoll modifications

    I did that in my game...so your idea is correct. Delete the image from Fiddler and then they won't have that on their paperdoll to double click. I did with with that race ability book on the far left there and the virtue image at the top of the paperdoll window.
  10. Djeryv

    Ultima Adventures - A full featured, content packed offline/online server

    I think I see what is going on here. I'll let Chris know. If it is doing what it looks like it was doing then good fix.
  11. Djeryv

    Is there away to Reverse deco command?

    I did this by having the decorate command set every item to a -2.0 weight. Although not necessary, I did a core change in Item.cs to have anything with a weight <= 0 to not display a weight. Then I told my decorate command to remove all items with a -2.0 weight and then redecorate again. Worked...
  12. Djeryv

    Help for Adventure's mysterious corpse lag (runuo)

    That code you took out is actually in base RunUO 2.
  13. Djeryv

    Ultima Adventures - A full featured, content packed offline/online server

    The maps are very full, but remember that you can do "facets" so you can have 12 different Lodors or 5 different Sosarias. Just saying in case you want to recycle dungeons to make different ones...although they will look like their replicates but it still provides a blank area to work with. One...
  14. Djeryv

    Ultima Adventures - A full featured, content packed offline/online server

    A long time ago I was very tempted to make a quest for the TriForce but chickened out because it wasn't Ultima-ee enough.
  15. Djeryv

    unable to enter world

    I would run into this problem when my IP address was set incorrectly. Here is an example... Let's pretent my public IP address was 24.213.58.214 and my private was 192.168.1.2. My server is set to listen on 192.168.1.2...but I am trying to connect from the outside so I set my client to connect...
  16. Djeryv

    Ultima Adventures - A full featured, content packed offline/online server

    Is that a play on Final Fantasy?! Can you ride them?
  17. Djeryv

    ClassicUO and additional maps

    An hour? Most of us moved away from dial up to broadband or fiber. Google drive has really good download rates and people can get full game clients in just a few minutes.
  18. Djeryv

    ClassicUO and additional maps

    Sign up for a free Google account. Then use Google Drive to store your files and make them public to download. There is more than enough space to host your client for others to download and then you don't have to deal with crap like that MegaDrive that some people insist on using.
  19. Djeryv

    What Comes in the ServUO Box?

    I got this to work pretty easy...with two hiccups not in the instructions I saw where you install .Net 4.8 and such. I had to download and install these two things as well as of this date (March 31 2021): https://www.microsoft.com/en-us/download/details.aspx?id=48145...
Back