Search results

  1. Fraz

    error CS0120: An object reference is required for the non-static field, method, or property 'DemonicSamurai.Despawn()'

    Change m_TTL = DateTime.Now + TimeSpan.FromSeconds(3600); to m_TTL = DateTime.UtcNow + TimeSpan.FromSeconds(3600);
  2. Fraz

    How do I add house placement tool to architect vendor?

    What do you have your era set to? Maybe scratch that if current ServUO.. he should have it for any AOS+ server. SBArchitect.cs
  3. Fraz

    Help for Adventure's mysterious corpse lag (runuo)

    Unless that is working server source in the Utilities folder..? :D
  4. Fraz

    Help for Adventure's mysterious corpse lag (runuo)

    I posted it, you must be looking past it on accident.. for (int k = 0; k < EquipItems.Count; ++k) { Item item2 = EquipItems[k]; if (!items.Contains(item2) && item2.IsChildOf(from.Backpack))...
  5. Fraz

    Help for Adventure's mysterious corpse lag (runuo)

    Did you add the above checks to Corpse.cs? 1614710691 Before this.. for ( int i = 0; !didntFit && i < items.Count; ++i ) { Item item = items;
  6. Fraz

    Help for Adventure's mysterious corpse lag (runuo)

    The only thing that really stands out to me, is this loop check (below) is being run in ServUO ahead of the one you have here, and is missing in 'Open' of Corpse.cs for (int k = 0; k < EquipItems.Count; ++k) { Item item2 =...
  7. Fraz

    Help for Adventure's mysterious corpse lag (runuo)

    Thanks missed that, and had the same problem! lol 1614637913 Is there no override for AddItem in Container.cs? Wouldn't we need Item.cs?
  8. Fraz

    Help for Adventure's mysterious corpse lag (runuo)

    Item item = items; to Item item = items [ i ];
  9. Fraz

    Chest-like bank

    Gotcha.. I understand better now. Not a different looking container, an actual different container. You may find some ideas looking at how corpses are handled, or even better I think there is a Bag of Sending in the resources or somewhere, maybe.
  10. Fraz

    Chest-like bank

    Well no.. you just need to figure out the catagories you need.. and make the proper adjustments.. could be by any property. Gender, race, guild w/e..
  11. Fraz

    Oz's Static Gump (An in Game Pandora's Box)

    Hello.. thought I'd mention this since I'm here.. :) int index = (page * 10) + i; if (index >= m_Types.Length) break; // <-- Needs added
  12. Fraz

    Personalized Container gumps

    Fraz submitted a new resource: Personalized Container gumps - Misc Read more about this resource...
  13. Fraz

    Personalized Container gumps

    public override void DisplayTo(Mobile to) { ProcessOpeners(to); NetState ns = to.NetState; if (ns == null) { return; } if (to is PlayerMobile pm) { if (pm.Name ==...
  14. Fraz

    Chest-like bank

    Add this override to any container, and adjust the conditional to your need.. I used Name prop as an example.. public override void DisplayTo(Mobile to) { ProcessOpeners(to); NetState ns = to.NetState; if (ns == null) {...
  15. Fraz

    Targeting Land Tiles

    Where you were targeting, and what you were calculating were different spots. So it was where your char was standing, not what you were targeting that was being processed. The fix I showed works perfect. P.S. Statics are handled above where LandTarget is in HarvestTarget.cs..
  16. Fraz

    Targeting Land Tiles

    The issue you are encountering is due to checking the mobiles Location instead of your targeted location... LandTile lt = map.Tiles.GetLandTile(from.X, from.Y); && lt.Z == from.Z try.. else if (targeted is LandTarget lt && IsSandTile(lt.TileID))
  17. Fraz

    So new I squeak

    You can also just say the petsname obey as an admin and your set to go. Do not use the command bracket..'[' 1559699962
  18. Fraz

    Monster Titles

    When I read his reply I caught him saying this.. and how I came to the assumption. and he removed the token.. He can have the comma in the way I demonstrated.. but its just a suggestion regardless.
  19. Fraz

    Monster Titles

    I think it's safe to assume he isn't using an updated version of ServUO using CodeDom. 1559537248 maybe.. props += ", " + addition; instead?
  20. Fraz

    Killer idea? Livestock.

    I helped with the resource (a tiny) so I was just curious what you liked about it, if you're not interested in Cooking?

Active Shards

Donations

Total amount
$0.00
Goal
$1,000.00
Back