Recent content by Dramoor

  1. General Opinion?

    I don't use AI for anything lol.
  2. Universal Storage Keys

    There is also overrides in aritifacts like the Blaze of Death.
  3. Universal Storage Keys

    Some are read only and some can be set in the weapon iirc.
  4. Cant access server locally

    It is possible using the same directory is having issues with UOSteam, I also found if you have more than 1 client installed using UOsteam with any of the Auto detect functions can swap directories for data and cause issues.
  5. Cant access server locally

    I don't know if this is still an issue but.....are you using the same client for the server you are to log in with?
  6. Issue with OnAdded Method

    You could also on the item initialize movement event handler. I use this to do follow effects on players.
  7. Issue with OnAdded Method

    Yeah, no idea what my brain was in when I was looking at it.
  8. Issue with OnAdded Method

    If it is like a mobile, I would say it is detecting as an internal map still. Maybe try using OnAfterSpawn
  9. I'm asking you a question because I'm curious about the tree collection once again.

    Then it does not in the copy I use I tracked when doing extra textures in and coming up with 1 a lot. So I changed it to != to get around it coming up with a 1 and exiting the verify. So if it is supposed to it might not do it at least my copy does not seem to but I have been butchering mine as...
  10. I'm asking you a question because I'm curious about the tree collection once again.

    Weird...With that code change and using the ItemIDs 0x4D9C and 0x4DA0 adding in where Vox said they work for me.
  11. I'm asking you a question because I'm curious about the tree collection once again.

    I think there is an issue in that loop that sometimes marks it as over 0. So I would change : for (int i = 0; dist < 0 && i < Tiles.Length; ++i) to: for (int i = 0; dist != 0 && i < Tiles.Length; ++i) and see if it changes the results. This at least works for me when using mining...
  12. I'm asking you a question because I'm curious about the tree collection once again.

    Your answer will be found by looking and adjusting this line most likely. https://github.com/ServUO/ServUO/blob/c11047d380248e014a63c54648171cc2890423cf/Scripts/Services/Harvest/Core/HarvestDefinition.cs#L147
  13. Help adding RunicHammer to loot table

    If you look at the repository here. You can see it needs a CraftResource to add it in. Would look like this public override void GenerateLoot() { this.AddLoot(LootPack.FilthyRich); this.AddLoot(LootPack.Gems, 4); switch (Utility.Random(20)) { case 0: PackItem(new...
Back