Recent content by Korasek

  1. Is there a way to add a bankcheck to a mob.

    Many.. in your case you could check OnBeforeDeath/OnDeath method and drop the bank check from there. OnDamage mwthod can also be useful in this case.
  2. Linux, Make (compile) and ServUO 57.3

    still getting .NET 4.8 errors building ultima and server
  3. Linux, Make (compile) and ServUO 57.3

    We are on the case.. well Pyro is.. was yesterday for a couple of hours. We worked on it yesterday and we've found Mono doesn't support C# 7.3, only 7.2. Line 71 in Server/ScriptCompiler.cs Change the version for 7.2 and try compiling it. If you use anything above 7.2 in your coding, like...
  4. UO Black Box

    Any suggestion for running it under Linux? Getting compilation errors for all the foreach (var (x, y) in stuff) { ... } Any hint? -thanks Still need help? It's in the gump art files of the client. You can use a software like UOFiddler to read and edit the files. This will create a...
  5. Player resurrect and equip the last wearing items?

    Did it work? Another way could be using OnBeforeDeath() method (maybe named a bit differently in RunUO) and save the layers.
  6. Blacksmith gump message

    When it's a numeric message, it's in the cliloc file (usually cliloc.enu) and you can access it using an editor like Fiddler.
  7. Skill increases as a quest reward.

    Olorin has a point: items are the easiest way. Also just setting the skill base at 100 is ok, except, of course, if you need the diff for any reason!
  8. Ubuntu .NET 4.8 errors

    continuing at : https://www.servuo.com/threads/pub-57-3-ubuntu-22-04-mono-empty-assembly-output.15624/
  9. Pub 57(.3) -> Ubuntu 22.04 -> Mono -> Empty Assembly Output

    (continuation from post: https://www.servuo.com/threads/ubuntu-net-4-8-errors.15607/) Howdy! So after setting up properly and using the right commands, I was able to "fix" this previous situation and.. another came! :) I joined a screenshot with all details of the error I receive on `make`...
  10. Ubuntu .NET 4.8 errors

    Hi!! Thanks for replying. Mono is now installed 'complete', version 6.8.0.105 (I thought I did it, but only runtime was installed) Still, I got the same. I'm maybe not using the good way to compile the sources? I followed the instructions on the README.md! -K- error MSB3644: The reference...
  11. Ubuntu .NET 4.8 errors

    Hello! I am getting .NET 4.8 reference errors on `dotnet build` when building the shard's branch. I tried to install it. I tried : apt, apt-get, then snap, wine, winetricks, tequila shots, .. always getting many install errors, even using `--force`. I also tried to retarget using VS Comm...
  12. AddStatMod() fail?

    Howdy! Sorry for the delay, I was out for a month! Thanks for the link! I'll take a look at the file.
  13. World Builder(s)

    Many!! Andrew will (or already did) contact you!
  14. AddStatMod() fail?

    Howdy! So I added a stat mod, using AddStatMod(), a cc from another one I found in the code.. from.AddStatMod(new StatMod(StatType.Str, modName + "Str", 5, TimeSpan.FromMinutes(120))); After 2 minutes it was still ON, so I changed it for this from.AddStatMod(new StatMod(StatType.Str, modName...
  15. UO Black Box

    Hello! Little update.. The character used to login with the enhanced client still receives black box null reference errors when trying logging in with the regular client. The second character of the same account is good BUT the player did not try EC with this character.
Back