Search results

  1. 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.
  2. 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...
  3. 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.
  4. 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...
  5. Juzzver

    Question on a script

    you could use this example for any spells.
  6. 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() {...
  7. 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) {...
  8. 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:
  9. 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...
  10. 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...
  11. Juzzver

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

    Yes, try to check Tutorial pages: https://www.servuo.com/archive/categories/tutorials.21/
  12. 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...
  13. Juzzver

    Converting RunUo 1.0R2 to RunUo 2.3 Error

    For commands need to add: using Server.Commands;
  14. 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[] {...
  15. Juzzver

    Pet Gaining Fame on Kill

    BasePet bp = ds.m_Mobile as BasePet; .... if (bp != null && bp.Controlled) expeirence.Add(totalExp); or even better: else { titles.Add( ds.m_Mobile ); levels.Add( ds.m_Mobile )...
  16. Juzzver

    Hot to get SpellCircle from magery scroll?

    You've tried to create just an Item which won't have any relation with SpellScroll, so your condition can never be performed. if you want to add all spells, you need just increase "circle" variable from 3 to 8. int circles = 3; for (int i = 0; i < circles * 8 &&...
  17. Juzzver

    Pub 54 question and renaissance

    haven't renaissance formulas and features been removed from ServUO 54+ publishes?
  18. Juzzver

    Next Broadsword Update - Titans from Ultima: Pagan

    All scripts should be placed in the Scripts folder, you can create there a Custom folder for it, where all your downloaded or custom scripts will be.
  19. Juzzver

    Delete item on Gump Response

    InstantBreedDeed deed = m_Deed as InstantBreedDeed; You've tried to inititialize variable for deed, but you don't have any reference on real deed. You need to add additional param for deed in method signature and send deed as reference: public BreedingAcceptGumpInstant(Mobile pet1, Mobile pet2...
  20. Juzzver

    Weird Visual Bug

    if I'm not mistaking you're using ClassicUO and I think this topic has common problem with your. https://www.servuo.com/threads/starting-eqip-for-profession-warrior-invisible.14657/

Active Shards

Donations

Total amount
$0.00
Goal
$500.00
Back