Search results

  1. Juzzver

    Goto added map

    [set map 37 or [set map "Xeen World"
  2. Juzzver

    Sleeping in Beds/Bedrolls

    Theoretically - it is possible. But at the same time, the inscription "you're death" will appear, which is unlikely you want to see. If you are using clients around version 7.0.22 or higher, then they already have Flash effects of this kind, which allow you to apply darkening or vice versa...
  3. Juzzver

    Possible or Dream? - Searching an Item's ObjectPropertyList

    I'm sorry, that was my mistake. HeaderArgs would work for a custom item name, which made me mistakenly think it would work for all other labels as well. But we still have the opportunity to make it work as we would like, though we need to make changes to the base code or use reflection...
  4. Juzzver

    Possible or Dream? - Searching an Item's ObjectPropertyList

    You could use item.PropertyList.HeaderArgs to get string values. Exemple: public override bool OnDragDrop(Mobile from, Item dropped) { if (dropped?.PropertyList?.HeaderArgs?.Contains("Guarding") == true) { // ToDo something...
  5. Juzzver

    from.Backpack.DropItem Don't Stack

    DropItemStacked defined in BaseContainer, not in its parent "Container". The code should looks like: BaseContainer pack = from.Backpack; pack.DropItemStacked(new Bottle(count)); // or just: //...
  6. Juzzver

    Double-Clicking to Equip

    Place this code in the PlayerMobile.cs script. public override void Use(Item item) { base.Use(item); if (item.IsChildOf(this.Backpack)) { if (item.Movable && item is ICraftable) { if...
  7. Juzzver

    Double-Clicking to Equip

    It's enough to override the Use( Item item ) method in PlayerMobile for this idea and check the items on the Layer property.
  8. Juzzver

    Means to prevent cheating/exploitation

    Hi! Of course, you are not limited in logging any actions, but you will have to lay this functionality yourself. Servers out of the box do not take into account a number of possible vulnerabilities that players can abuse, but mostly exclude critical bugs. But in the case of custom scripts or...
  9. Juzzver

    ArrowPM

    Hey! Sorry for my remark, I think it would be nice to add a delay between messages or a spam filter, as in the current configuration this will allow ddos all players in just a couple of seconds. + uncontrolled creation of items can greatly harm the server.
  10. Juzzver

    Night system help

    There is another tough decision. You could try to change the compiled code of the original client using specialized utilities and just change the packet value that will be responsible for GlobalLight. The assistants-soft will stop processing this package, and on the server side you can continue...
  11. Juzzver

    Question on a script

    you could use this example for any spells.
  12. Juzzver

    Strange question about a sound effect

    Beetle.cs just overrides next sounds in specific cases: public override int GetAngerSound() { return 0x21D; } public override int GetIdleSound() { return 0x21D; } public override int GetAttackSound() {...
  13. Juzzver

    Question on a script

    It's already defined for Counselors by "[Cast SpellName" command https://github.com/ServUO/ServUO/blob/master/Scripts/Commands/Handlers.cs#L475 [Usage("Cast <name>")] [Description("Casts a spell by name.")] public static void Cast_OnCommand(CommandEventArgs e) {...
  14. Juzzver

    Ultima Store items made simple - by XML configuration with custom tooltip text

    Nice feature. I did the same before. You can also try adding dynamic load for changes:
  15. Juzzver

    Dedicated Server Host 2022

    Amazon or Azure be ideal, but require more skill. When choosing a VPS / VDS, pay attention to the type of virtualization, processor power and availability of SSD disks, as well as pre-test the ping and choose the appropriate country from which the best ping for your players will be. You can...
  16. Juzzver

    Dedicated Server Host 2022

    You can try to find the cheap VPS server with 2 Cores 3GHz, RAM 4-6GB Max, Windows Server 2012 , SSD 40-80GB Max. - it will be more than enough for a good start with online 50-100. The newer the OS, the more it will consume RAM and disc space. Windows server 2012 - supports .NET Core, so don't...
  17. Juzzver

    Newbie and starting to get ServUO to work (hopefully!!)

    Yes, try to check Tutorial pages: https://www.servuo.com/archive/categories/tutorials.21/
  18. Juzzver

    Newbie and starting to get ServUO to work (hopefully!!)

    Make sure you've added correct path to the client in the Config/DataPath.cfg file. Example: # Uncomment this line and set it to the path of the client files to set a # custom data path. Otherwise ServUO will look for the client in the default # Windows installation directories. Note that this is...
  19. Juzzver

    Converting RunUo 1.0R2 to RunUo 2.3 Error

    For commands need to add: using Server.Commands;
  20. Juzzver

    Shard CPU usage is high

    LootStage.Spawning gonna spawn loot only if one of the LootPackEntry will have property AtSpawnTime = true; But by default all LootPack no have these values. Example: public static readonly LootPack LootMeager = new LootPack( new[] {...

Active Shards

Donations

Total amount
$0.00
Goal
$500.00
Back