Search results

  1. RedBeard

    Issue with OnAdded Method

    I'm attempting to make a Magic Wand that reveals Hidden Items and Mobiles. The revealing part works as expected, however in the OnAdded method I am trying to passively detect hidden objects. This is what I have, which compiles, but doesn't passively detect. public static void OnAdded(object...
  2. RedBeard

    OnDamagedBySpell : specific spell has an affect on basecreature.

    Looking for the correct method. When player casts a specific spell it has an affect on basecreature.
  3. RedBeard

    Targeting Land Tiles

    Using latest ServUo: Trying to make a shovel uncover the entrance to my custom dungeon by having players randomly look for it targeting the land tiles in the area. One method sort of works(LandTile) I tried only allows me to target playermobile not the ground, but for some reason also allows...
  4. RedBeard

    Legends of Aria [Ultima Online 2]

    https://www.legendsofaria.com/ http://legendsofaria.gamepedia.com/Legends_of_Aria_Wiki
  5. RedBeard

    Drelgor Re-Release

    RedBeard submitted a new resource: Drelgor Re-Release - Old Haven, Mini-Champ, New Player Quest Read more about this resource...
  6. RedBeard

    Add Use Delay to Ontargeted

    I made a timer that worked fine in the OnDoubleClick method, but my timer needs to wait for the target confirmation before it sets DateTimeNow. Otherwise on a failed Target attempt the player still gets penalized by the timer. using System; using Server.Network; using Server.Targeting...
  7. RedBeard

    Item Changes colors with the MoonPhase

    Trying to make this bracelet change colors according to the MoonPhase independent of any action, meaning you don't have to equip, dbl-click to change color. When you travel from one facet to another it should auto change color based on the Phase of the Moon. This compiles fine but the color...
  8. RedBeard

    Tardis from Dr. Who Series [Moongate]

    RedBeard submitted a new resource: Tardis from Dr. Who Series [Moongate] - Alt. public moongate Read more about this resource...
  9. RedBeard

    Fire Casino Decorate

    Is there a Decoration file for Fire Casino?
  10. RedBeard

    Bridges missing from Southern Jungle

    RedBeard submitted a new resource: Bridges missing from Southern Jungle - Multis, Structures, Briges, Trinsic, Southern Jungle Read more about this resource...
  11. RedBeard

    Mobile spawns helper but the helper dies

    When the Solen Queen lays egg sac if not destroyed it spawns a helper. This all works well except the helper's life slowly drains til it dies as well as the queen after the egg hatches, what causes this and how can I control that effect or negate it? This is the section with helper: The...
  12. RedBeard

    Repeating trap

    Currently this script finds multiple targets and launches an arrow at all targets at once. I'm trying to get it to attack one target at a time. When it does multiple targets the damage seems to multiply as well strangely. I change the 'foreach' to if statements having some trouble public...
  13. RedBeard

    Randomly moving NPC

    RedBeard submitted a new resource: Randomly moving NPC - Moving NPC Read more about this resource...
  14. RedBeard

    Trying to move a mobile

    Trying to make a mobile that moves to a new location based off a timer. using System; using System.Collections; using Server.Items; using Server.Targeting; namespace Server.Mobiles { public class ThiefGuildmasterTram : BaseGuildmaster { Point3D[] MoveLocations = { new Point3D( 1478...
  15. RedBeard

    Working on a gump

    How can i make a button in a gump perform a command such as open chat normally command: [c AddButton(127, 245, 2117, 2117, (int)Buttons.Button6, GumpButtonType.Reply, 0);//chat 6 AddLabel(150, 243, 47, @"Chat"); and this section below: case...
  16. RedBeard

    Server Time wrong

    Server Time says my time zone but time is 7 hours in advance. How do i change it
  17. RedBeard

    Adding compassion gain

    Trying to figure out how to add compassion gain to this: if (DateTime.Now < m_LastClicked + TimeSpan.FromHours(1.0)) { from.SendLocalizedMessage(1060001);//You throw the switch, but the mechanism cannot be engaged again so soon. return; } Container pack = from.Backpack as Container; if...
  18. RedBeard

    Halloween Event

    RedBeard submitted a new resource: Halloween Event - Events, Holiday, Halloween Read more about this resource...
  19. RedBeard

    Fame Karma titles

    Anyone remember how to block fame titles ShowFameTitles = false; doesn't work it says its read only
  20. RedBeard

    Horde Spawner: aka Horde of Rats

    RedBeard submitted a new resource: Horde Spawner: aka Horde of Rats - Mobiles, Horde, theives, ratmen, brigand, orc, spawner Read more about this resource...
Back