Recent content by Fraz

  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.
Back