Recent content by RandomGuy

  1. RandomGuy

    Mobile Speed Control questions

    Oh nice! I didn't even realize that speed control was in that line. I'll have to play with them speed numbers and see if it makes a difference. Thanks a bunch! Yes, these are the functions I've been using. between this and manwitch answer I think I will get it going. Thank you for the reply!
  2. RandomGuy

    Mobile Speed Control questions

    I'm having a hard time figuring out the best methods to use for speed control. I've tried using a couple methods and setting CurrentSpeed directly but What I'm getting is mobiles that look like they're in run mode but only move at the pace of a walk. Maybe there's an overall setting I'm fighting...
  3. RandomGuy

    Asking opinions to make monsters more balanced and neutral, not die, die, die

    I'm making an amazon warrior right now to learn a bit how things work. I have them switching weapons for ranged & melee. They self heal but don't always get the heal off. I added the means for them to call for help and any others in the area will switch to the callers combatant. Final tweaks to...
  4. RandomGuy

    How would I make a mobile move to a particular xyz coordinate after spawn?

    Nice John! Thanks for that! You the man!
  5. RandomGuy

    Set Hue of armor when spawning?

    Yes perfect! I'm messing with this mobile to get the hang of C#. I'm liking it but some things like the shorthand syntax you just showed me are a little tough to figure out at first. Thanks again!
  6. RandomGuy

    Set Hue of armor when spawning?

    Thank You! Way better than what I came up with.
  7. RandomGuy

    Set Hue of armor when spawning?

    The armor pieces dont act like the thighboots. I can do this for thighboots: AddItem(new ThighBoots(0x901)); But the armor doesn't seem to have this option. What can I do to this line or after it to set hue for the item? AddItem(new FemaleLeatherChest()); And thank you thank you thank you for...
  8. RandomGuy

    Set Hue of armor when spawning?

    Can someone help me with what methods to use to dye armor while i'm equipping my mobile? The thighboots just take an argument in the item but the armor isn't working the same. So I assume there's a method for this but I can't seem to find it.
  9. RandomGuy

    UO Architect 2.7.# Installation Steps for ServUO - 57 to Current (7/2021)

    Yeah, I gave up on it. Screwed everything up so I just reverted.
  10. RandomGuy

    UO Architect 2.7.# Installation Steps for ServUO - 57 to Current (7/2021)

    Where he says to do this.... 3. Now you'll need to also open up your OrbServer.cs within Visual Studio. You will be adding an argument to the "ChannelServices.RegisterChannel(chan);" line. It will look like this: ChannelServices.RegisterChannel(chan, true); //register channel Try just adding...
  11. RandomGuy

    Orcs redone...

    I'm using HealChance like this and it works fine. I like that they don't always get the heal off as they would if I just adjusted Hits. public override double HealChance { get { return 1; } }
  12. RandomGuy

    Heya, I'd like to check out your server

    Heya, I'd like to check out your server
  13. RandomGuy

    UO Architect 2.7.# Installation Steps for ServUO - 57 to Current (7/2021)

    Run through this and it did the build without error after a fix from above. Now when I try to start my server i'm getting the below errors It seems to just be with the DarkKnightCreeper file but I'd like to keep it. Any suggestions? [Persistance]: An error was encountered while loading a saved...
  14. RandomGuy

    How would I make a mobile move to a particular xyz coordinate after spawn?

    I'm not seeing this on the menu, could you elaborate on where I can find this setting?
Back