Search results

  1. Fraz

    [MEDIA] [ATTACH] Started updating Live Coding with colors

    Started updating Live Coding with colors
  2. Fraz

    Double-Clicking to Equip

    Check for a typo on line 2178, you have a ; instead of || (at the end of the line) Note : This code is causing crashes and will need gone over again by its author. Using PlaceInBackpack with a null item is causing the crash.
  3. Fraz

    Double-Clicking to Equip

    Try changing his line 6 to.. if (!item.Movable || !(item is ICraftable)) return;
  4. Fraz

    Vendor drop down menus?

    I was looking at the 57 repo and curious if this line is going to hold that up? ObjectPropertyList.Enabled = Core.AOS; because of.. public static void ContextMenuRequest(NetState state, PacketReader pvSrc) { var target = World.FindEntity(pvSrc.ReadInt32())...
  5. Fraz

    Server Crashes on Faction Gump

    By your crash report it looks to be missing a null check in FactionStoneGump.cs in public override void OnResponse(NetState sender, RelayInfo info) Case 0: if (m_Faction.Election != null) {...
  6. Fraz

    [ATTACH]

  7. Fraz

    Apologies.. I should have tried to include this in the previous video but it slipped my mind at...

    Apologies.. I should have tried to include this in the previous video but it slipped my mind at the time.
  8. Fraz

    [MEDIA]

  9. Fraz

    [MEDIA]

  10. Fraz

    [MEDIA]

  11. Fraz

    [MEDIA]

  12. Fraz

    [MEDIA] Some simple examples I threw together for this system, but hoping to get back to...

    Some simple examples I threw together for this system, but hoping to get back to bringing life to towns and npcs in the coming year. Merry Christmas UO fans!
  13. Fraz

    Portable Anvil and Forge

    You could try.. (FindItemByType instead of FindItemsByType) if (from.Backpack.FindItemByType(typeof(PortableAnvil)) != null && from.Backpack.FindItemByType(typeof(PortableForge)) != null) { return 0; // if both are found }
  14. Fraz

    [MEDIA]

  15. Fraz

    Banker Gump

    using Server.Gumps; at the top? My setup is a little different, I think thats it though.
  16. Fraz

    Banker Gump

    I was responding to your original gump question..which would have been, in public static void HandleSpeech(Mobile vendor, SpeechEventArgs e) case 0x0002: // *bank* { e.Handled = true...
  17. Fraz

    [MEDIA]

  18. Fraz

    Explosion Potions wont damage innocents

    Thanks for supporting my you-tube channel and liking and commenting on videos too. ;)
  19. Fraz

    Explosion Potions wont damage innocents

    It's this line.. return (noto != Notoriety.Innocent || from.Murderer); change to return true;
  20. Fraz

    Explosion Potions wont damage innocents

    If you want all indirect damage to work in the same way, I think just, return true; at the original place I showed. Line 571 of SpellHelper.cs https://github.com/ServUO/ServUO/blob/6d5e5c69ff0f40322e559793ace9f6bcb9c40e9a/Scripts/Spells/Base/SpellHelper.cs#L571
Back