Search results

  1. adding a gump to ethereal mobile item in pack

    I'm trying to add a single click to open a gump to change the ethereal into a ethereal deed this is what I have added but the gump doesn't appear in game public override void OnSingleClick(Mobile from) { if (!IsChildOf(from.Backpack)) {...
  2. classicuo crashes when I double click a item

    This is a crash log from opening a gump while using classicuo. can anyone help me pinpoint what is causing the crash? Exception: System.InvalidOperationException: Texture2D creation failed! Error Code: The parameter is incorrect. (0x80070057) at...
  3. Services' Requested

    Hello, I have a runuo 1.0 server that I would like to have these three scripts reworked for use with my server. I'm willing to pay for your time and scripting ability. pm me! thanks so much for your time. invasion-system cities davies locker 1 Davies Locker auto sort
  4. is this possible

    i have 2 animation files i'd like for a particular mob to spawn as. I want to keep the 2 different artworks in the same index number. So basically anim1 and anim3 have the 2 animations I want to use. Is there some code I can add to the mob .cs file that would tell it to randomly choose...
  5. updating this script to run on runuo1.0

    I have made changes to get this script to compile on runuo 1.0. when I try to add the Item the server crashes with this error. RunUO Version 1.0.0, Build 36918 Operating System: Microsoft Windows NT 6.2.9200.0 .NET Framework: 1.1.4322.573 Time: 2/13/2023 9:41:35 AM Mobiles: 6526 Items: 145592...
  6. when locking this item down in house I cant access it to turn the animation on and off

    when locking this item down in house I cant access it to turn the animation on and off. I get "you are not allowed to access this". this is my house btw. here is the full item script im working with using System; using Server; namespace Server.Items { public abstract class...
  7. advanced training dummy

    This is the Advanced training Dummy script. For some odd reason the east facing dummy doesn't animate correctly. It gets stuck and does odd stuff. I Think the issue is with this portion of the script. can someone brake this portion of code down and tell me what all the numbers mean...
  8. adding multiple items to drops from a item

    Im trying to ADD more then one item to drop at .025 chance here is what I have but wont compile private void FinishEffect( Point3D p ) { Item fish = GiveFish( m_Player.Skills.Fishing.Base / 100 ); if ( fish != null ) {...
  9. adding new wall mounts

    I'm adding new wall mounts and I don't have a string number for them. so when I try to put text in this is the crash report I'm getting. this error happens on creation of the addon item once the corpse is targeted. here is the portion I added bottom line alligator private static...
  10. little help with a lobster trap bobber

    in the portion Effects.SendLocationEffect( p, Map, 0x352D, 16, 4 ); I change the number 16 to 1500 and the bobber stays longer but it only last for around 10 seconds I need it to stay around 20 seconds. I've tried 3000 and it still disappears at 10 seconds. Trying to get the bobber to stay...
  11. trying to get chairs to take random hue

    if anyone has a free moment to help This is what I get in console and the item is not created. System.NullReferenceException: Object reference not set to an instance of an object. at Server.Items.BaseChair.OnLocationChange(Point3D oldLocation) at Server.Item.MoveToWorld(Point3D location...
  12. lightning arrow

    I'm getting this error when trying to add a new weapon ability. can you tell me what I'm missing here - Error: Scripts\Lightning_Arrow.cs: CS1501: (line 76, column 6) No overload for method 'OnHit' takes '3' arguments using System; using System.Collections; using Server; using Server.Spells...
  13. new container isn't taking triangle2d cords

    Two different color stocking containers green/red. The red stocking takes the cords just fine but the green wont work it puts all items I add to the container in one horizontal line. any thoughts on what might cause this considering they are both set to the same settings? using System; using...
  14. paragon chest aren't taking random hue

    this is my paragon chest script. paragon chest aren't taking random hue any help would be much appreciative using System; using System.Collections; using Server; using Server.Gumps; using Server.Multis; using Server.Network; using Server.ContextMenus; using Server.Engines.PartySystem...
  15. Killer pumpkin, hellhound,and hours animations

    Hello everyone, I've searched high and low for the artwork animations for these three creatures with no luck. Does anyone have a verdata file of these animations they would be willing to donate to my server? I see where they are supposed to be located in bodyconf. But the slots they show they...
Back