Search results

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

    Question on a script

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

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

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

    Converting RunUo 1.0R2 to RunUo 2.3 Error

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

    Pub 54 question and renaissance

    haven't renaissance formulas and features been removed from ServUO 54+ publishes?
  15. 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.
  16. 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...
  17. 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/
  18. Juzzver

    Players being trap under the map

    You need to take a memory dump from the server in order to find out at what stage of the code the hang occurs. Also If you are using mono, you can also try to install an older version or vice versa a more recent version, there is a possibility of a version conflict with the current code.
  19. Juzzver

    Attach XmlValue on Player via XmlSpawner

    The work of the XMLspawner system has been cut down in the SerVUO and this functionality no longer works. You need to reinstall this system to get all the functions working again.
  20. Juzzver

    After Spell.Cast(), Targeting

    Yes, you're right. It's like pseudo casts, just damage + effects. If you want to immediately apply casting for weapons, you will need to perform a number of manipulations with the definition of spell parameters. You can directly define a list of spells and then you will have the opportunity to...

Active Shards

Donations

Total amount
$0.00
Goal
$1,000.00
Back