Search results

  1. RedBeard

    Targeting Land Tiles

    Tried that as well: LandTile lt = map.Tiles.GetLandTile(from.X, from.Y); only allows me to target player, but for some reason I can target static tiles as well, like grasses and rocks when the target should be sand tiles only. This: if (targeted is LandTarget && IsSandTile(lt.ID) && lt.Z...
  2. 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...
  3. RedBeard

    Lightsaber

    Here is something I found in my script archives. Never used it.
  4. RedBeard

    Dungeon Doors that Require Specific Keys

    Here is a script that spawns a mobile that has a key to open a specific door. The door will also relock after set time. I also added my force field script, can be used to block doorway or hall. Originally made for a group dungeon, the force field requires a player with enough Magery to dispel...
  5. RedBeard

    Warnings when I added a script that had an error.

    OrganizePouch is missing from server or is misspelled somewhere. https://visualstudio.microsoft.com/free-developer-offers/
  6. RedBeard

    Warnings when I added a script that had an error.

    check your script OrganizeMe.cs or post it here for review.
  7. RedBeard

    Sleepable Beds and or pillows

    This is pretty old, most likely needs to be updated. I also have sleeping NPCs, let me know if you are interested in that as well. If you update this, submit your version to the forums for others to enjoy.
  8. RedBeard

    Simple stone/gump

    Been awhile, but doesn't this work? "i renounce my faction player status".
  9. RedBeard

    Treasure map oddity

    I made runebook atlas' and marked where every long and lat cross. Named the runes with the corresponding coordinates. Then decode maps and drop into Davys locker, Davys locker with show coords of each decoded map. Reference the atlas and go to nearest point (use a map program to get closer, UOS...
  10. RedBeard

    Orange region

    Create your own region and list it in regions.xml.
  11. RedBeard

    Effect minutes after death

    Check DullCopperElemental.cs. This mobile explodes on death. For more fun check out the Kamikaze Wizard script I uploaded, he explodes doing damage to players in range while sending body parts and entrails flying.
  12. RedBeard

    Toll Teleport Pillar

    Found this from an old quest I made. It is a teleporter that looks for an Item (key) in a players backpack; can be change to an amount of gold.
  13. RedBeard

    Question About Food?

    Everything is found in Food.cs, however, be cautious how much you increase it. Since potions have a delay timer between uses, so do bandages and considering casting delays for spells, you could unbalance the game. Also food doesn't require a free hand to use like potions or spell casting and...
  14. RedBeard

    Question About Food?

    It creates a random number [between 6 and 3] and then adds the fill factor. Bread Loaf has a fill factor of 3 where cooked bird is 5 (more fill factor = more bonus). If you roll a random number of 5 and you ate bread [fill factor 3] it would restore 8 stamina/health. The fill factor max or...
  15. RedBeard

    Question About Food?

    In Food.cs See how it handles stamina. [Health would be Hits] public static bool FillHunger(Mobile from, int fillFactor) { if (from.Hunger >= 20) { from.SendLocalizedMessage(500867); // You are simply too full to eat any more...
  16. RedBeard

    Error

    I found this, don't know if it helps or not.
  17. RedBeard

    Error

    Error: System.Exception: Type 'Server.Commands.Puke' does not have a serialization constructor What is Puke? Emote command maybe? Got to be something you added, removed or edited.
  18. RedBeard

    Error

    Puke.cs public override void Serialize(GenericWriter writer) { base.Serialize(writer); writer.Write(0); // version } public override void Deserialize(GenericReader reader) { base.Deserialize(reader); int version...
  19. RedBeard

    Servuo:Shrink

    Check FairyShrinkItem.cs for example

Active Shards

Donations

Total amount
$50.00
Goal
$1,000.00
Back