Search results

  1. Diego

    Pre-HS New Multi Galleon WIP

    Hi you all, I don't know if this is the right place where to write.. but I would start a WIP to create/share a new multi of a galleon using the classic BaseBoat.cs (for pre-HS clients) and the classic boat graphic (I prefer this graphic rather than the new galleon's one). Right now I've almost...
  2. Diego

    Latest Client w/o Legal Issues

    Hi you all, can you suggest me the latest High Seas client I can download (and if you have it, the download link) and I can edit (upgrading graphics/maps, decrypting and hexadecimal translating the client) without any legal issue? I'm on RunUO 2.5 (Feb.2014) so I don't know the latest fully...
  3. Diego

    Login Problem if on Ships

    Hi, if I'm in a ship in the sea and logout.. when I login again I'm not in the ship anymore, but on the mainland (maybe the nearest coast). Is this a map problem?.. How can I fix this and login in the same ship?
  4. Diego

    Wind propelled Ships

    Hi, I would insert a wind-system so ships can go only in the direction wind blows in that moment (but faster), unless players remove the sail and use rows or other ways (maybe steam engines). There is anything ready to download or do You have any suggestions? Thank you
  5. Diego

    GetProperties Owner

    Hi You all, there is a way to do this (just for example)? public override void GetProperties(ObjectPropertyList list) { Mobile tooltipOwner = OwnerOfTheTooltip; /* THIS IS JUST FOR EXAMPLE, IT DOESN'T COMPILE */ list.Add( "{0}\n", this.Name ); if( tooltipOwner == this.Owner )...
  6. Diego

    OnEnemy Crash

    Hi, I modded the OnEnemy function of a particular guard adding this: if( m_CityStone.Check(1) ) { ((BaseGuardian)this).ForceMove( m, "jail"); this.Say( "You're under arrest!" ); } else if( m_CityStone.Check(2) ) { ((BaseGuardian)this).ForceMove( m, m_CityStone.Town.ToString()...
  7. Diego

    Death Status

    Hi, I changed the dead player's aspect with a bodymod ondeath(), but now the screen doesn't turn black/white (it remains coloured).. If I logout and login again the player appears without the bodymod, with the classic deathshroud and the grayscale screen. Can I change the dead body aspect...
  8. Diego

    TaxPersistance Timer Problem

    Hi, I've duplicated the disguisePersistance Timer to create a new taxPersistance Timer which counts taxes, but when i reboot the server this timer doesn't restart and the timer.Next is 01/01/0001... why? using System; using System.Collections.Generic; using Server; using Server.Mobiles; using...
  9. Diego

    Close Container Gumps OnMove

    Hello, There is a way to close an open container if a player moves? I noticed if the container is outside your backpack its gump automatically closes if I go out of range, but if I put the container inside my backpack I never go out of range.. so the gump remains open. I would have containers I...
  10. Diego

    Checking Buy and Sell

    Hello, I would prevent players from opening a vendor's buy or sell panel if another player's already buying or selling from the same NPC... which file/function I've to edit? Thank You in advance!
  11. Diego

    Help with Incognito or Fake Names

    Hi you all! I don't know how to solve this problem.. I've implemented an "Unknown" name system, so each player could give fake names to other ones (and they can take note of that names multiple times, in this way "Unknown" turns into "Name"). I've also implemented a "Citizens, Evaders, Outlaws...
  12. Diego

    How to Disable/Override Properties Menu

    Hi You all, there is a method to prevent the transparent properties menu (the one visible when you pass your mouse over an item) of a particular item? I tried this: public override void SendPropertiesTo( Mobile from ) {} public override void GetProperties(ObjectPropertyList list){} but if I...
  13. Diego

    New Body Race in Paperdoll

    Hello! I would add a new body gump for orcs that can be seen in the paperdoll (I've added the new race in the core and in my racestone). Googling for tutorials or threads I've not understood well if there is a way or not.. Could you help me?
  14. Diego

    Refresh Character Status Panel on Double Click

    Hi you all, there is a command to refresh the Character Status Panel after a double click on an item (i.e. a Four-Leaf)? I've added a BaseLuck property to Mobile.cs and it works, but the Character Status LUCK changes only if I move the Four-Leaf inside the backpack after the double click. When...
  15. Diego

    Max usages for a single LandTile

    Hi you all, I've scripted an "Herbalism Knife" to take reagents and colored berrys if used on a Forest LandTile. Can you suggest me how to limit the max usages per single tile (a sort of respawn time)? Thank you!
  16. Diego

    Items not visible, but exist

    Hi everyone, I've just edited the ArrowPM 0.0.3 scripts to let players send/receive messages, but sometimes the received and/or the saved messages (if I save them before sending) seem to disappear after a server restart. When I create the items (as scrolls) and add them into PG's backpacks...
  17. Diego

    Mount Animation

    Hi to all, I've just created a new mount reciclying a monster animation. I would animate the mounted creature (i.e. with the fly animation) leaving the player (rider) in the idle mount status, but when I use the animate( slot number 19 ) function both dragon and player play the same slot...
Back