protected override void OnTarget(Mobile m, object o) { Item item = o as Item; if (item == null || !(m is PlayerMobile)) { m.SendLocalizedMessage(1079576); // You cannot imbue this item. return; } ImbuingContext context = Imbuing.GetContext(m); int mod = context.Imbue_Mod; int modInt = context.Imbue_ModInt; if (!Imbuing.CanImbueItem(m, item) || !Imbuing.OnBeforeImbue(m, item, mod, modInt) || !Imbuing.CanImbueProperty(m, item, mod)) { ImbueGump.SendGumpDelayed((PlayerMobile)m); } else { Imbuing.TryImbueItem(m, item, mod, modInt); ImbueGump.SendGumpDelayed((PlayerMobile)m); } }
protected override void OnTarget(Mobile from, object o) { if (!(o is Item)) { from.SendLocalizedMessage(1079576); // You cannot imbue this item. return; } ImbuingContext context = Imbuing.GetContext(from); int mod = context.Imbue_Mod; int modInt = context.Imbue_ModInt; Item it = o as Item; if (!Imbuing.CanImbueItem(from, it) || !Imbuing.OnBeforeImbue(from, it, mod, modInt) || !Imbuing.CanImbueProperty(from, it, mod)) { ImbuingGumpC.SendGumpDelayed(from); return; } Imbuing.TryImbueItem(from, it, mod, modInt); ImbuingGumpC.SendGumpDelayed(from); }
public override void OnResponse(RelayInfo info) { ImbuingContext context = Imbuing.GetContext(User); switch (info.ButtonID) { case 0: // Close case 1: { User.EndAction(typeof(Imbuing)); break; } case 10005: // Imbue Item { User.SendLocalizedMessage(1079589); //Target an item you wish to imbue. User.Target = new ImbueItemTarget(); User.Target.BeginTimeout(User, TimeSpan.FromSeconds(10.0)); break; } case 10006: // Reimbue Last { Item item = context.LastImbued; int mod = context.Imbue_Mod; int modint = context.Imbue_ModInt; if (item == null || mod < 0 || modint == 0) { User.SendLocalizedMessage(1113572); // You haven't imbued anything yet! User.EndAction(typeof(Imbuing)); break; } if (Imbuing.CanImbueItem(User, item) && Imbuing.OnBeforeImbue(User, item, mod, modint)) { Imbuing.TryImbueItem(User, item, mod, modint); ImbueGump.SendGumpDelayed(User); } break; } case 10007: // Imbue Last Item { Item item = context.LastImbued; int mod = context.Imbue_Mod; int modint = context.Imbue_ModInt; if (context.LastImbued == null) { User.SendLocalizedMessage(1113572); // You haven't imbued anything yet! User.EndAction(typeof(Imbuing)); break; } ImbueStep1(User, item); break; } case 10008: // Imbue Last Property { context.LastImbued = null; int mod = context.Imbue_Mod; int modint = context.Imbue_ModInt; if (modint < 0) { modint = 0; } if (mod < 0) { User.SendLocalizedMessage(1113572); // You haven't imbued anything yet! User.EndAction(typeof(Imbuing)); break; } ImbueLastProp(User, mod, modint); break; } case 10010: // Unravel Item { User.SendLocalizedMessage(1080422); // Target an item you wish to magically unravel. User.Target = new UnravelTarget(); User.Target.BeginTimeout(User, TimeSpan.FromSeconds(10.0)); break; } case 10011: // Unravel Container { User.SendLocalizedMessage(1080422); // Target an item you wish to magically unravel. User.Target = new UnravelContainerTarget(); User.Target.BeginTimeout(User, TimeSpan.FromSeconds(10.0)); break; } } }
public override void OnResponse(RelayInfo info) { ImbuingContext context = Imbuing.GetContext(User); switch (info.ButtonID) { case 0: //Close { User.EndAction(typeof(Imbuing)); break; } case 10051: // Decrease Mod Value [<] { m_Value = Math.Max(ItemPropertyInfo.GetMinIntensity(m_Item, m_Info.ID), m_Value - 1); Refresh(); break; } case 10052: // Decrease Mod Value [<<] { m_Value = Math.Max(ItemPropertyInfo.GetMinIntensity(m_Item, m_Info.ID), m_Value - 10); Refresh(); break; } case 10053: // Minimum Mod Value [<<<] { m_Value = ItemPropertyInfo.GetMinIntensity(m_Item, m_Info.ID); Refresh(); break; } case 10054: // Increase Mod Value [>] { m_Value = Math.Min(ItemPropertyInfo.GetMaxIntensity(m_Item, m_Info.ID), m_Value + 1); Refresh(); break; } case 10055: // Increase Mod Value [>>] { m_Value = Math.Min(ItemPropertyInfo.GetMaxIntensity(m_Item, m_Info.ID), m_Value + 10); Refresh(); break; } case 10056: // Maximum Mod Value [>>>] { m_Value = ItemPropertyInfo.GetMaxIntensity(m_Item, m_Info.ID); Refresh(); break; } case 10099: // Back { BaseGump.SendGump(new ImbueSelectGump(User, context.LastImbued)); break; } case 10100: // Imbue the Item { context.Imbue_IWmax = m_MaxWeight; if (Imbuing.OnBeforeImbue(User, m_Item, m_ID, m_Value, m_TotalProps, Imbuing.GetMaxProps(m_Item), m_TotalItemWeight, m_MaxWeight)) { Imbuing.TryImbueItem(User, m_Item, m_ID, m_Value); SendGumpDelayed(User); } break; } } }
public override void OnResponse(NetState state, RelayInfo info) { Mobile from = state.Mobile; ImbuingContext context = Imbuing.GetContext(from); switch (info.ButtonID) { case 0: //Close { from.EndAction(typeof(Imbuing)); break; } case 10051: // Decrease Mod Value [<] { if (context.Imbue_ModInt > m_Definition.IncAmount) { context.Imbue_ModInt -= m_Definition.IncAmount; } from.SendGump(new ImbuingGumpC(from, m_Item, context.Imbue_Mod, context.Imbue_ModInt)); break; } case 10052: // Decrease Mod Value [<<] { if ((m_Mod == 42 || m_Mod == 24) && context.Imbue_ModInt > 20) { context.Imbue_ModInt -= 20; } if ((m_Mod == 13 || m_Mod == 20 || m_Mod == 21) && context.Imbue_ModInt > 10) { context.Imbue_ModInt -= 10; } else if (context.Imbue_ModInt > 5) { context.Imbue_ModInt -= 5; } from.SendGump(new ImbuingGumpC(from, context.LastImbued, context.Imbue_Mod, context.Imbue_ModInt)); break; } case 10053: // Minimum Mod Value [<<<] { context.Imbue_ModInt = 1; from.SendGump(new ImbuingGumpC(from, context.LastImbued, context.Imbue_Mod, context.Imbue_ModInt)); break; } case 10054: // Increase Mod Value [>] { int max = Imbuing.GetMaxIntensity(m_Item, m_Definition); if (m_Mod == 12 && context.LastImbued is BaseJewel) { max /= 2; } if (context.Imbue_ModInt + m_Definition.IncAmount <= max) { context.Imbue_ModInt += m_Definition.IncAmount; } from.SendGump(new ImbuingGumpC(from, context.LastImbued, context.Imbue_Mod, context.Imbue_ModInt)); break; } case 10055: // Increase Mod Value [>>] { int max = Imbuing.GetMaxIntensity(m_Item, m_Definition); if (m_Mod == 12 && context.LastImbued is BaseJewel) { max /= 2; } if (m_Mod == 42 || m_Mod == 24) { if (context.Imbue_ModInt + 20 <= max) { context.Imbue_ModInt += 20; } else { context.Imbue_ModInt = max; } } if (m_Mod == 13 || m_Mod == 20 || m_Mod == 21) { if (context.Imbue_ModInt + 10 <= max) { context.Imbue_ModInt += 10; } else { context.Imbue_ModInt = max; } } else if (context.Imbue_ModInt + 5 <= max) { context.Imbue_ModInt += 5; } else { context.Imbue_ModInt = Imbuing.GetMaxIntensity(m_Item, m_Definition); } from.SendGump(new ImbuingGumpC(from, context.LastImbued, context.Imbue_Mod, context.Imbue_ModInt)); break; } case 10056: // Maximum Mod Value [>>>] { int max = Imbuing.GetMaxIntensity(m_Item, m_Definition); if (m_Mod == 12 && context.LastImbued is BaseJewel) { max /= 2; } context.Imbue_ModInt = max; from.SendGump(new ImbuingGumpC(from, context.LastImbued, context.Imbue_Mod, context.Imbue_ModInt)); break; } case 10099: // Back { from.SendGump(new ImbuingGumpB(from, context.LastImbued)); break; } case 10100: // Imbue the Item { context.Imbue_IWmax = m_MaxWeight; if (Imbuing.OnBeforeImbue(from, m_Item, m_Mod, m_Value, m_TotalProps, Imbuing.GetMaxProps(m_Item), m_TotalItemWeight, m_MaxWeight)) { Imbuing.TryImbueItem(from, m_Item, m_Mod, m_Value); SendGumpDelayed(from); } break; } } }
public override void OnResponse(NetState state, RelayInfo info) { Mobile from = state.Mobile; ImbuingContext context = Imbuing.GetContext(from); switch (info.ButtonID) { case 0: // Close case 1: { from.EndAction(typeof(Imbuing)); break; } case 10005: // Imbue Item { from.SendLocalizedMessage(1079589); //Target an item you wish to imbue. from.Target = new ImbueItemTarget(); from.Target.BeginTimeout(from, TimeSpan.FromSeconds(10.0)); break; } case 10006: // Reimbue Last { Item it = context.LastImbued; int mod = context.Imbue_Mod; int modint = context.Imbue_ModInt; if (it == null || mod < 0 || modint == 0) { from.SendLocalizedMessage(1113572); // You haven't imbued anything yet! from.EndAction(typeof(Imbuing)); break; } if (Imbuing.CanImbueItem(from, it) && Imbuing.OnBeforeImbue(from, it, mod, modint)) { Imbuing.TryImbueItem(from, it, mod, modint); ImbuingGumpC.SendGumpDelayed(from); } break; } case 10007: // Imbue Last Item { Item item = context.LastImbued; int mod = context.Imbue_Mod; int modint = context.Imbue_ModInt; if (context.LastImbued == null) { from.SendLocalizedMessage(1113572); // You haven't imbued anything yet! from.EndAction(typeof(Imbuing)); break; } else { ImbueStep1(from, item); } break; } case 10008: // Imbue Last Property { context.LastImbued = null; int mod = context.Imbue_Mod; int modint = context.Imbue_ModInt; if (modint < 0) { modint = 0; } if (mod < 0) { from.SendLocalizedMessage(1113572); // You haven't imbued anything yet! from.EndAction(typeof(Imbuing)); break; } else { ImbuingGump.ImbueLastProp(from, mod, modint); } break; } case 10010: // Unravel Item { from.SendLocalizedMessage(1080422); // Target an item you wish to magically unravel. from.Target = new UnravelTarget(); from.Target.BeginTimeout(from, TimeSpan.FromSeconds(10.0)); break; } case 10011: // Unravel Container { from.SendLocalizedMessage(1080422); // Target an item you wish to magically unravel. from.Target = new UnravelContainerTarget(); from.Target.BeginTimeout(from, TimeSpan.FromSeconds(10.0)); break; } } return; }