Recent content by Feeh

  1. Damage Numbers & Heal Numbers ?

    As far as I remember, there are two colors for these numbers: RED when you get hit by someone / YELLOW when you get hit by some effect (poison...) You cannot change the behaviour or color since it is hardcoded inside the client You can, however, simulate this by sending an overhead message but...
  2. UOFiddler 4.6 - Client interaction not working?

    Yep, its been a long time since last UltimaDLL update in this functionality to support newer clients AFAIK there are some specific clients that were built in another way (?) and some tools didnt generalize well with them
  3. UOFiddler 4.6 - Client interaction not working?

    The client interaction will not work properly with the newest clients unless someone update the memory addresses on the UltimaDLL :(
  4. Output from gump to file

    The .NET official documentation https://docs.microsoft.com/pt-br/dotnet/api/system.io.file.createtext?view=netframework-4.7.2 You may need to add both tw.Flush(); and tw.Close(); as these will flush the stream to the output file then close it
  5. Output from gump to file

    Try this using System.IO; ... public override void OnResponse( Server.Network.NetState sender, RelayInfo info ) { using (TextWriter tw = File.CreateText(Path.Combine(Environment.CurrentDirectory, "THE_TEXTFILE_NAME.txt"))) { tw.WriteLine($"The player {sender.Mobile.Name} sent...
  6. Adding a value to defcrafting?

    AFAIR these long numbers are defined as TextDefinition, they can be either an int or a string, try putting your custom description over the number position
  7. Gump that refresh and doesnt blink?

    My guess is: 1- they send a new updated gump (that shows up above the old one) 2- then they send the close command to the old gump You can attach a packet analyser or use Razor to register the communication packets and analise the data to see how the trick is done
  8. UOFiddler with UOP support

    Feeh updated UOFiddler with UOP support with a new update entry: New version 0.2 Read the rest of this update entry...
  9. Misc UOFiddler with UOP support - New version 0.2

    It may now display the error message as it should
  10. UOFiddler with UOP support

    Indeed, not helpful as it should (never intended to release it :() Im not the author of the conversion code, just packed it into the plugin format You may be running into one of these possible problems from what I remember -No write permission to the file/files -Already open file -Output file...
  11. Speeding up the server (fast forward)

    Is it possible to speed up the server like a fast forward button? I thought about increasing the server Ticks by some factor to simulate the FF effect but if I disable the effect, the Tick count will go down and the server may freeze up as the timers will be expecting a much large amount of...
  12. Bounty System ''exploit''

    My ideas, not great ideas but maybe a starting point 1-limit the amount to put a bounty on so the value increase slowly and it wont wort to take this effort 2-prevent the gold from reaching the player and/or guild members/related somehow 3-monitor every pvp and detect the amount of effort used...
  13. Updated Packet List?

    I've recently noticed that every packet list we have out there does not cover every UO packet...I know, UO is closed source, extensive debugging needed to find new packets, etc. What about creating a repository/file/subforum to put every known packet and its definition. There are some unknown...
  14. New client lets you change window size to bigger but it does not work on servUO

    As long as you keep the client resolution to 800x600 Razor will be able to resize the screen to any resolution, if you select any other the client will scale down to 640x480
  15. Deserialize type

    Serialize it as String https://msdn.microsoft.com/pt-br/library/w3f99sx1(v=vs.110).aspx It can generate exceptions
Back