Search results

  1. Juzzver

    Delete Item(s) at some location (X,Y)

    "foreach" is used only for read-only operations. You cannot modify the enumeration during this time. To modify collection you can use "for" operator. Example #1: IPooledEnumerable items = map.GetItemsInRange(new Point3D(x, y, 0), 0); var itemList = items.ToList(); // Convert to a list to avoid...
  2. Juzzver

    Crashing

    You missed to add to the server folder next libs: https://github.com/ServUO/ServUO/blob/pub57/zlibwapi32.dll https://github.com/ServUO/ServUO/blob/pub57/zlibwapi64.dll and Ultima.dll what compiles from Ultima folder. You can run _windebug.bat file to compile this lib.
  3. Juzzver

    The Ultima Online directory

    Make sure that you haven't changed default value in DataPath.cs
  4. Juzzver

    The Ultima Online directory

    You have to configure Config/DataPath.cfg
  5. Juzzver

    UO Voice Teamspeak Plugin?

    This is a really cool idea! I had thoughts to implement something like this, but I evaluated it from the point of view of a self-written voice server and all the complexity of integration. But I never looked at it from the angle of using the API of existing voice servers. It's really possible!
  6. Juzzver

    Server broadcast ?

    It's already implemented in ServUO
  7. Juzzver

    Making an Item that takes on properties of items added to it.

    An alternative option is to add a convenient gump for all talismans just in Base code where by double-clicking an interface appears, for example, with three additional talisman slots. When inserting a talisman into slot_1, it will be added to the properties of the main talisman, so you get a...
  8. Juzzver

    My Shard has a weird problem. Community wisdom needed.

    You need to debug the server at the time of such freezes, which will allow you to find problem areas in the code. You can do this through Visual Studio, in debug mode (use guides if you are not familiar with the tool). The second option: use the built-in profiling tools in RunUO, which will show...
  9. Juzzver

    Cant add Screeneffect packet to Rununo 2.2?

    It works only for clients > 7.0.x versions And doesn't support by ClassicUO What the client and version do you use ?
  10. Juzzver

    3x3 matrice

    Sounds like Iris UO client what is open source.
  11. Juzzver

    Double-Clicking to Equip

    https://www.servuo.com/threads/double-clicking-to-equip.13885/#post-90513 It works with replacing equipped items
  12. Juzzver

    Gift Giving working on test but not main

    This system based on the LastLogin time. Probably while you testing this on local server with old saves, all characters have a lower date than StartDate value, and in this case it works well. But on the main server players have updated LastLogin values. For example you've set in script StartDate...
  13. Juzzver

    Can I change the supported C# version of the RunUO script compiler?

    Default RunUO ScriptCompiler can't use language more than C# 4 or 5. To make this work you need to rewrite a bit default CSharpCodeProvider in ScriptCompiler and start using Roslyn compiler what supports lang version like C# 7.3, etc Another one method - it's stop using the ScriptCompiler and...
  14. Juzzver

    Can't Connect

    Make sure that the check mark with "Remove Encription" on Razor window is enabled before launch the client
  15. Juzzver

    World Boss

    Would be better to create the spawneable minions in block with validLocation if (validLocation) { spawned.MoveToWorld(loc, map); spawned.Combatant = m; } Because otherwise, if the map doesn't find a valid place in the range to spawn, you'll...
  16. Juzzver

    Server time

    Command "Time" shows the date in UTC time, so it can look different between your local time. You could change this in Scripts\Commands\ShardTime.cs from to But all server configuration will continue using UTC time to avoid problems with local time and seasonal clock change
  17. Juzzver

    Writing to a .log file

    You could use next ingame commands for this: First command shows you all active members who logged to the game from 10 December to current date, their name, lastonline date, gametime and sorted them by lastonline filter. Second command gives to everyone a LargeBagBall (aka GiftBox with your...
  18. Juzzver

    Explain houses to me!

    Instead it's better to use: [add basemulti 0x74 I didn't sure that multies have Constructable flags, but it works :)
  19. Juzzver

    Explain houses to me!

    These params are offsets (X, Y, Z) from cetral point of house. (id == 0xA2 ? 24 : 27) - they're just Z -cases for different door ItemIDs For example, you can place a multi in the game, such as a scripted house, and check the center point with the following command: [area interface where...
  20. Juzzver

    RunUO 2.3 - Local testing server

    Old releases were delivered without a visual studio project You can download source codes from official releases page: Releases · runuo/runuo For example, the latest version 2.7 already includes the "sln" project.

Active Shards

Donations

Total amount
$0.00
Goal
$500.00
Back