Search results

  1. 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.
  2. Fraz

    [MEDIA]

  3. Fraz

    [MEDIA]

  4. Fraz

    [MEDIA]

  5. Fraz

    [MEDIA]

  6. 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!
  7. 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 }
  8. Fraz

    [MEDIA]

  9. Fraz

    Banker Gump

    using Server.Gumps; at the top? My setup is a little different, I think thats it though.
  10. 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...
  11. Fraz

    [MEDIA]

  12. Fraz

    Explosion Potions wont damage innocents

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

    Explosion Potions wont damage innocents

    It's this line.. return (noto != Notoriety.Innocent || from.Murderer); change to return true;
  14. 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
  15. Fraz

    Explosion Potions wont damage innocents

    It's part of public static bool ValidIndirectTarget(Mobile from, Mobile to), which is what you want with an explosion potion. Look to Explode in BaseExplosionPotion.cs to see where its called. (Indirect Targets..)
  16. Fraz

    Explosion Potions wont damage innocents

    You could check here too.. ServUO/SpellHelper.cs at 6d5e5c69ff0f40322e559793ace9f6bcb9c40e9a · ServUO/ServUO
  17. Fraz

    [MEDIA]

  18. Fraz

    [MEDIA] Check out all my videos of UO features at...

    Check out all my videos of UO features at https://www.youtube.com/channel/UCYXr7jC9TBB_B8tZfI-70rA Share! Like! and Subscribe! If you'd like to. A random subscriber will be selected to receive a feature at special milestones.
  19. Fraz

    Thanks Arthrutus!

    Thanks Arthrutus!
  20. Fraz

    [MEDIA] Check out all my videos of UO features at...

    Check out all my videos of UO features at https://www.youtube.com/channel/UCYXr7jC9TBB_B8tZfI-70rA Share! Like! and Subscribe!
Back